fix: Page content is not displayed on shared page when skip SSR
@@ -14,7 +14,7 @@ export const useInitialCSRFetch = (shouldFetch?: boolean): void => {
useEffect(() => {
if (shouldFetch) {
- fetchCurrentPage();
+ fetchCurrentPage({ force: true });
}
}, [fetchCurrentPage, shouldFetch]);
};