diff --git a/server/index.js b/server/index.js index d69f825..f6553b8 100755 --- a/server/index.js +++ b/server/index.js @@ -506,7 +506,7 @@ app.get('/api/projects/:projectName/files', authenticateToken, async (req, res) return res.status(404).json({ error: `Project path not found: ${actualPath}` }); } - const files = await getFileTree(actualPath, 3, 0, true); + const files = await getFileTree(actualPath, 10, 0, true); const hiddenFiles = files.filter(f => f.name.startsWith('.')); res.json(files); } catch (error) {