We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5fc4fb commit 2303249Copy full SHA for 2303249
apps/X/app/home/page.tsx
@@ -1,8 +1,6 @@
1
"use client";
2
3
import { HomeComp } from "@/components/ui";
4
-import { HomeIcon } from "lucide-react";
5
-import { signOut } from "next-auth/react";
6
const homepage = () => {
7
return (
8
<div>
apps/X/app/lib/auth.ts
@@ -193,11 +193,7 @@ export const authOptions = {
193
username: user.username,
194
});
195
}
196
- return {
197
- id: user.id.toString(),
198
- name: user.name,
199
- username: user.username,
200
- };
+ return true;
201
} catch (error) {
202
console.error("SignIn Error ", error);
203
return false;
0 commit comments