style(home): format constructor for better readability
All checks were successful
All checks were successful
This commit is contained in:
parent
af90108b3b
commit
ce17741e72
1 changed files with 4 additions and 1 deletions
|
@ -18,7 +18,10 @@ export default class HomeComponent implements OnInit {
|
|||
isDepositModalOpen = false;
|
||||
isDepositSuccessful = false;
|
||||
|
||||
constructor(public route: ActivatedRoute, public router: Router) {}
|
||||
constructor(
|
||||
public route: ActivatedRoute,
|
||||
public router: Router
|
||||
) {}
|
||||
|
||||
ngOnInit() {
|
||||
this.isDepositSuccessful = this.route.snapshot.queryParams['success'] == 'true';
|
||||
|
|
Loading…
Add table
Reference in a new issue