This commit is contained in:
adueck 2023-08-28 14:50:58 +04:00
parent 60d024abb6
commit a312879c1e
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ export async function getAllFeedback(): Promise<any[]> {
const res = await feedbackDb.find({
selector: { doc: { $exists: true } },
});
console.log({ res });
return res.docs as any[];
}