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