From 1cb0d7da528d4fef17743ef45b01d9100d964086 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 3 Sep 2025 12:26:03 +0800 Subject: [PATCH] Fix title not working on Bookmarks page --- src/pages/bookmarks.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/bookmarks.jsx b/src/pages/bookmarks.jsx index 8c045e79..4bd5b4d8 100644 --- a/src/pages/bookmarks.jsx +++ b/src/pages/bookmarks.jsx @@ -9,7 +9,7 @@ const LIMIT = 20; function Bookmarks() { const { t } = useLingui(); - useTitle(t`Bookmarks`, '/bookmarks'); + useTitle(t`Bookmarks`, '/b'); const { masto, instance } = api(); const bookmarksIterator = useRef(); async function fetchBookmarks(firstLoad) {