diff --git a/web/layouts/user-profile-layout/layout.tsx b/web/layouts/user-profile-layout/layout.tsx index 5ff3891e0..60c17d8d4 100644 --- a/web/layouts/user-profile-layout/layout.tsx +++ b/web/layouts/user-profile-layout/layout.tsx @@ -28,8 +28,9 @@ export const ProfileAuthWrapper: React.FC = observer((props) => { const isAuthorizedPath = router.pathname.includes("assigned" || "created" || "subscribed"); return ( -
-
+
+ +
{isAuthorized || !isAuthorizedPath ? (
{children}
@@ -39,8 +40,6 @@ export const ProfileAuthWrapper: React.FC = observer((props) => {
)}
- -
); });