feat(debt-dialog): add debt warning dialog for negative balance

This commit is contained in:
Jan-Marlon Leibl 2025-04-02 12:50:51 +02:00
commit 68a226b677
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
7 changed files with 182 additions and 32 deletions

View file

@ -51,3 +51,10 @@
[show]="showGameResult()"
(gameResultClosed)="onCloseGameResult()"
></app-game-result>
<!-- Debt Dialog -->
<app-debt-dialog
[amount]="debtAmount()"
[show]="showDebtDialog()"
(dialogClosed)="onCloseDebtDialog()"
></app-debt-dialog>