chore: format frontend with prettier

This commit is contained in:
forgejo-bot
2026-05-09 19:23:26 +00:00
parent d98b18aeb9
commit 1fcdc4ea6c
18 changed files with 484 additions and 502 deletions
+6 -6
View File
@@ -5,14 +5,14 @@ import Home from "./pages/Home";
import Stream from "./pages/Stream";
function App() {
const path = window.location.pathname.toLowerCase();
const path = window.location.pathname.toLowerCase();
let content = <Home />;
if (path === "/stream") {
content = <Stream />;
}
let content = <Home />;
if (path === "/stream") {
content = <Stream />;
}
return <Layout>{content}</Layout>;
return <Layout>{content}</Layout>;
}
export default App;