We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06bc425 commit c5a40abCopy full SHA for c5a40ab
1 file changed
src/pages/landing/landing.ts
@@ -22,14 +22,16 @@ export class LandingPage {
22
23
goToLogin(): void { this.navCtrl.push('LoginPage'); }
24
25
+ goToSignup(): void { this.navCtrl.push('SignupPage'); }
26
+
27
goToBillList(): void {
28
this.authProvider.anonymousLogin().then(newUser => {
29
loading.dismiss().then(() => {
30
this.navCtrl.setRoot(HomePage);
31
});
32
}).catch(error => {
33
- console.error(error);
34
+ console.error("goToBillList ",error);
35
36
37
0 commit comments