diff options
| author | bob <bcz@cs.brown.edu> | 2019-04-15 16:04:16 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-04-15 16:04:16 -0400 |
| commit | 166c37942ba536f024cbeba6f151da0ed6a3f671 (patch) | |
| tree | 9850022d8c60fc64926cff23f3aacd1815f2d64c /src/client/views/Main.tsx | |
| parent | 6c0b421db6aa3204bbc6e42139d240f503000b5d (diff) | |
fixing up small interaction issues with web pages, collections, etc.
Diffstat (limited to 'src/client/views/Main.tsx')
| -rw-r--r-- | src/client/views/Main.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx index 98ef329c7..6c18e9ad5 100644 --- a/src/client/views/Main.tsx +++ b/src/client/views/Main.tsx @@ -84,7 +84,11 @@ export class Main extends React.Component { this.initEventListeners(); this.initAuthenticationRouters(); - this.initializeNorthstar(); + try { + this.initializeNorthstar(); + } catch (e) { + + } } componentDidMount() { window.onpopstate = this.onHistory; } |
