FIX: Screenshot Issues

This commit is contained in:
EvanLin3141
2025-02-26 12:51:17 +00:00
parent ef93df549b
commit 1341a10d76
4 changed files with 154 additions and 17 deletions

View File

@@ -16,6 +16,7 @@ import StreamDashboardPage from "./pages/StreamDashboardPage";
import { Brightness } from "./context/BrightnessContext";
import Sidebar from "./components/Navigation/Sidebar";
import LoadingScreen from "./components/Layout/LoadingScreen";
import Following from "./pages/Following";
function App() {
const [isLoggedIn, setIsLoggedIn] = useState(false);
@@ -98,6 +99,7 @@ function App() {
></Route>
<Route path="/results" element={<ResultsPage />}></Route>
<Route path="/404" element={<NotFoundPage />} />
<Route path="/user/:username/following" element={<Following />} />
<Route path="*" element={<Navigate to="/404" replace />} />
</Routes>
</BrowserRouter>