diff --git a/client/components/post-page/index.tsx b/client/components/post-page/index.tsx index b9599e9f..3ddc8155 100644 --- a/client/components/post-page/index.tsx +++ b/client/components/post-page/index.tsx @@ -18,7 +18,6 @@ import CreatedAgoBadge from "@components/badges/created-ago-badge" import Cookies from "js-cookie" import PasswordModalPage from "./password-modal-wrapper" import VisibilityControl from "@components/badges/visibility-control" -import useSharedState from "@lib/hooks/use-shared-state" type Props = { post: Post @@ -35,8 +34,6 @@ const PostPage = ({ post: initialPost, isProtected }: Props) => { const [isOwner] = useState( post.users ? post.users[0].id === Cookies.get("drift-userid") : false ) - const [signedIn] = useSharedState("signedIn") - const router = useRouter() const isMobile = useMediaQuery("mobile")