style: fixed prettier and hopefully eslint
This commit is contained in:
parent
604d593fdc
commit
25492f3e68
7 changed files with 38 additions and 28 deletions
|
@ -1,9 +1,9 @@
|
|||
import {ChangeDetectionStrategy, Component, inject} from '@angular/core';
|
||||
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
|
||||
import { NavbarComponent } from '../../shared/components/navbar/navbar.component';
|
||||
import { CurrencyPipe, NgFor } from '@angular/common';
|
||||
import { Game } from '../../model/Game';
|
||||
import { Transaction } from '../../model/Transaction';
|
||||
import {DepositComponent} from "../deposit/deposit.component";
|
||||
import { DepositComponent } from '../deposit/deposit.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-homepage',
|
||||
|
@ -71,10 +71,10 @@ export default class HomeComponent {
|
|||
},
|
||||
];
|
||||
|
||||
openDepositModal(){
|
||||
openDepositModal() {
|
||||
this.isDepositModalOpen = true;
|
||||
}
|
||||
closeDepositModal(){
|
||||
closeDepositModal() {
|
||||
this.isDepositModalOpen = false;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue