Index: chapterx-frontend/src/App.tsx
===================================================================
--- chapterx-frontend/src/App.tsx	(revision acf690c1403ecbecd948a46d950278f177f2d408)
+++ chapterx-frontend/src/App.tsx	(revision b373fea3e2c9d404606002f8e7ba265a82d68187)
@@ -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()
   }, [])
