diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index e86771bf..9f79e651 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -269,7 +269,7 @@ function App() { const handleFavoriteChange = () => { // This will trigger a re-render of the FavoritesMenu - setUser(prev => ({ ...prev })); + setUser((prev: any) => ({ ...prev })); }; if (!bookName || !chapterNumber || !actualBookName) {