diff --git a/package.json b/package.json index 44531eaf44..5bfbd559f5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matters-web", - "version": "3.10.2", + "version": "3.11.0", "description": "codebase of Matters' website", "sideEffects": false, "author": "Matters ", diff --git a/src/components/Protected/index.tsx b/src/components/Protected/index.tsx index 82395f9051..ba6fc2c755 100644 --- a/src/components/Protected/index.tsx +++ b/src/components/Protected/index.tsx @@ -13,7 +13,6 @@ export const Protected: React.FC = ({ children }) => { } }, [viewer.privateFetched]) - if (viewer.isAuthed && viewer.privateFetched) { return <>{children} }