feat(web): enhance transaction display and account management features

This commit is contained in:
Stevan Freeborn
2026-03-10 17:46:21 -05:00
parent 3408f6ea4f
commit 4d1c01776f
12 changed files with 616 additions and 274 deletions
@@ -19,6 +19,7 @@ internal static class Endpoint
var user = await appDbContext.Users
.Include(u => u.Institutions)
.ThenInclude(i => i.Accounts)
.ThenInclude(a => a.Metadata)
.FirstOrDefaultAsync(u => u.Id == userId);
if (user is null)