file changes

This commit is contained in:
tglide
2023-08-10 00:02:03 +01:00
parent 6cb93336a9
commit 5d5f6a0c0f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export const fileSearcher = (async (query: string) => {
const { files } = await sdk.forProject.storage.listFiles(
$bucket.$id,
[Query.orderDesc('$createdAt')],
[Query.orderDesc('')],
query || undefined
);
+1 -1
View File
@@ -8,7 +8,7 @@ import type { Searcher } from '../commands';
export const projectsSearcher = (async (query: string) => {
const { projects } = await sdk.forConsole.projects.list([
Query.equal('teamId', get(organization).$id),
Query.orderDesc('$createdAt')
Query.orderDesc('')
]);
return projects