diff --git a/frontend/components/user-settings/user-settings.tsx b/frontend/components/user-settings/user-settings.tsx
index 0dd695324e..89c2d6114a 100644
--- a/frontend/components/user-settings/user-settings.tsx
+++ b/frontend/components/user-settings/user-settings.tsx
@@ -23,7 +23,6 @@ import ProfileTab from "@/components/user-settings/profile-tab";
import LoadingScreen from "@/components/common/loading-screen";
import { useAuth } from "@/app/auth/auth-context";
import { cn } from "@/lib/utils";
-import AuthPageWrapper from "../auth/auth-page-wrapper";
import { User, UserSchema } from "@/lib/schemas/user-schema";
const fetcher = async (url: string): Promise
=> {
@@ -309,7 +308,7 @@ export default function UserSettings({ userId }: { userId: string }) {
}
return (
-
+ <>
{error ? (
Error: Failed to load user data
) : !user ? (
@@ -496,6 +495,6 @@ export default function UserSettings({ userId }: { userId: string }) {
)}
-
+ >
);
}