Skip to content

Commit

Permalink
Remove ready check. Eric is adding one in a separate change.
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed Jan 25, 2024
1 parent 44937e2 commit 7f7551d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions teachertool/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function App() {
}
}, [ready]);

return ready ? (
return (
<div className="app-container">
<HeaderBar />
<div className="inner-app-container">
Expand All @@ -54,7 +54,7 @@ function App() {
<CatalogModal />
<Notifications />
</div>
) : null;
);
}

export default App;

0 comments on commit 7f7551d

Please sign in to comment.