feat(account): #49 basic account page design
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m58s

This commit is contained in:
2025-05-06 23:02:55 +02:00
parent b8f13dfc93
commit 3d0601fc7c
7 changed files with 45 additions and 25 deletions

View File

@@ -42,7 +42,7 @@ func (handler AccountImpl) handleAccountPage() http.HandlerFunc {
return
}
comp := account.AccountListComp(nil)
comp := account.Account()
handler.render.RenderLayout(r, w, comp, user)
}
}