aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedList.tsx
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-15 14:22:31 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-15 14:22:31 -0800
commitcc74caf9d9b66711f4aab793966c1f8a5663e1b9 (patch)
tree8602af15cd7e36f1ce1f8a5c9f6753b7f108adbe /frontend/src/components/FeedList.tsx
parent9f64d3a18eb92c4845dac38265acecef2931490b (diff)
downloadneko-cc74caf9d9b66711f4aab793966c1f8a5663e1b9.tar.gz
neko-cc74caf9d9b66711f4aab793966c1f8a5663e1b9.tar.bz2
neko-cc74caf9d9b66711f4aab793966c1f8a5663e1b9.zip
Switch to HashRouter to fix page reload issues (NK-hy162w)
Diffstat (limited to 'frontend/src/components/FeedList.tsx')
-rw-r--r--frontend/src/components/FeedList.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/FeedList.tsx b/frontend/src/components/FeedList.tsx
index 556ce6e..ce83333 100644
--- a/frontend/src/components/FeedList.tsx
+++ b/frontend/src/components/FeedList.tsx
@@ -111,7 +111,7 @@ export default function FeedList({
if (error) return <div className="feed-list-error">Error: {error}</div>;
const handleLogout = () => {
- apiFetch('/api/logout', { method: 'POST' }).then(() => (window.location.href = '/v2/login'));
+ apiFetch('/api/logout', { method: 'POST' }).then(() => (window.location.href = '/v2/#/login'));
};
return (