fix folders

This commit is contained in:
Brian Cao 2022-08-25 22:20:30 -07:00
parent f69bd36223
commit c811577460
30 changed files with 42 additions and 36 deletions

View file

@ -171,3 +171,7 @@ export async function findUnique(data) {
return data[0] ?? null;
}
export async function findFirst(data) {
return data[0] ?? null;
}