Skip to content

Commit 2303249

Browse files
committed
fix
1 parent f5fc4fb commit 2303249

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

apps/X/app/home/page.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
"use client";
22

33
import { HomeComp } from "@/components/ui";
4-
import { HomeIcon } from "lucide-react";
5-
import { signOut } from "next-auth/react";
64
const homepage = () => {
75
return (
86
<div>

apps/X/app/lib/auth.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,7 @@ export const authOptions = {
193193
username: user.username,
194194
});
195195
}
196-
return {
197-
id: user.id.toString(),
198-
name: user.name,
199-
username: user.username,
200-
};
196+
return true;
201197
} catch (error) {
202198
console.error("SignIn Error ", error);
203199
return false;

0 commit comments

Comments
 (0)