fix: currency display

This commit is contained in:
eneller
2026-03-06 19:53:04 +01:00
parent 308225f190
commit 80a260f515
4 changed files with 11 additions and 4 deletions

View File

@@ -12,6 +12,7 @@ import Transaction from '@model/transaction';
export class ScreenProfile implements OnInit{
username = 'John Doe';
userID = 'testuser';
balance = 200;
transactions!: Transaction[];
constructor(private api: APIService){}