We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26fba40 commit 4efe025Copy full SHA for 4efe025
1 file changed
tests/app/index.ts
@@ -91,7 +91,7 @@ app.post('/upload', async (c) => {
91
lastModified: fileContent.lastModified,
92
},
93
}
94
- );
+ ).sort((a, b) => a.name.localeCompare(b.name));
95
return c.json(returnedBody);
96
});
97
0 commit comments