diff options
Diffstat (limited to 'web/components/auth')
| -rw-r--r-- | web/components/auth/logout.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/web/components/auth/logout.tsx b/web/components/auth/logout.tsx index 87391c84..8d627f68 100644 --- a/web/components/auth/logout.tsx +++ b/web/components/auth/logout.tsx @@ -3,9 +3,14 @@ import { signOut } from "next-auth/react"; export const LogoutButton = () => { return ( - <button className="btn btn-ghost normal-case" onClick={() => signOut({ - callbackUrl: "/", - })}> + <button + className="btn btn-ghost normal-case" + onClick={() => + signOut({ + callbackUrl: "/", + }) + } + > Sign Out </button> ); |
