feat: add tui app

This commit is contained in:
Max Koon
2025-11-14 13:26:15 -05:00
parent 058f2bb94f
commit 5b14b4e7a4
22 changed files with 2395 additions and 128 deletions

View File

@@ -32,9 +32,9 @@ export const queries = {
.orderBy('name', 'asc');
}),
getItems: syncedQueryWithContext('getItems', z.tuple([]), (authData: AuthData | null) => {
isLoggedIn(authData);
// isLoggedIn(authData);
return builder.plaidAccessTokens
.where('userId', '=', authData.user.id)
// .where('userId', '=', authData.user.id)
.orderBy('createdAt', 'desc');
})
};