Skip to content

Commit

Permalink
Remove console statement
Browse files Browse the repository at this point in the history
  • Loading branch information
wg102 committed Jan 9, 2024
1 parent 1da2a74 commit 24a439d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ export class LandingPage extends mixinBehaviors([AppLocalizeBehavior], utilities
ns = ns + counter;
}
this.namespaceName = ns;
}).catch((e)=> console.error(e));
}).catch((e)=> {
this.set('error', {response: {
error: e,
namespace: this.namespaceName,
}});
});
}

async nextPage() {
Expand Down

0 comments on commit 24a439d

Please sign in to comment.