This commit is contained in:
2023-11-27 07:26:21 +01:00
parent 8e2b0ada32
commit 0f5a0ed5ab
2 changed files with 26 additions and 20 deletions

View File

@@ -47,6 +47,7 @@ func (h *ApplicationHandler) Dashboard(w http.ResponseWriter, r *http.Request) {
for _, account := range resp.Accounts[min:] {
if filterAccount(r, account) {
fmt.Println(account)
a := account.ToStorageType()
accounts = append([]any{a}, accounts...)
}