Index: chapterx-frontend/src/App.tsx
===================================================================
--- chapterx-frontend/src/App.tsx	(revision acf690c1403ecbecd948a46d950278f177f2d408)
+++ chapterx-frontend/src/App.tsx	(revision d300631ac3354730c3b03cb7b160974af50e7894)
@@ -52,5 +52,4 @@
 
   if (!currentUser) {
-    addToast('Please sign in to access this page.', 'warning')
     return <Navigate to="/login" replace />
   }
@@ -68,9 +67,10 @@
 
 function App() {
-  const { fetchStories, fetchChapters, fetchReadingLists } = useStoryStore()
+  const { fetchStories, fetchChapters, fetchCollaborations, fetchReadingLists } = useStoryStore()
 
   useEffect(() => {
     fetchStories()
     fetchChapters()
+    fetchCollaborations()
     fetchReadingLists()
   }, [])
