Remove else block wrapper for final component return to reduce indenting and hopefully make the PR diff easier to approve.

This commit is contained in:
cliffhall
2025-03-28 15:56:10 -04:00
parent 804a144ffb
commit 84335ae5f4

View File

@@ -424,7 +424,8 @@ const App = () => {
<OAuthCallback /> <OAuthCallback />
</Suspense> </Suspense>
); );
} else { }
return ( return (
<div className="flex h-screen bg-background"> <div className="flex h-screen bg-background">
<Sidebar <Sidebar
@@ -671,7 +672,6 @@ const App = () => {
</div> </div>
</div> </div>
); );
}
}; };
export default App; export default App;