feat: dialog box

This commit is contained in:
Max Koon
2025-11-20 23:39:45 -05:00
parent 882d437007
commit 0edbf53db3
15 changed files with 361 additions and 23 deletions

View File

@@ -22,6 +22,7 @@ export const queries = {
isLoggedIn(authData);
return builder.plaidLink
.where('user_id', '=', authData.user.id)
.where('createdAt', '<', new Date().getTime() + (1000 * 60 * 60 * 4))
.orderBy('createdAt', 'desc')
.one();
}),