fix: closing of deposit confirmation modal
This commit is contained in:
parent
caf2794489
commit
95889fc937
2 changed files with 9 additions and 1 deletions
|
@ -15,6 +15,7 @@ import {ConfirmationComponent} from "../../shared/components/confirmation/confir
|
|||
})
|
||||
export default class HomeComponent {
|
||||
isDepositModalOpen = false;
|
||||
isDepositSuccessful = true;
|
||||
|
||||
featuredGames: Game[] = [
|
||||
{
|
||||
|
@ -78,4 +79,11 @@ export default class HomeComponent {
|
|||
closeDepositModal() {
|
||||
this.isDepositModalOpen = false;
|
||||
}
|
||||
|
||||
openDepositSuccessfulModal() {
|
||||
this.isDepositSuccessful = true;
|
||||
}
|
||||
closeDepositSuccessfulModal() {
|
||||
this.isDepositSuccessful = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue