import { currentUser } from "@/lib/auth/current-user"; import { getAccounts, getSession, getSessions } from "@/lib/auth/auth"; import { LoggedInButtonClient } from "./logged-in-button"; import { SUPPORTED_PROVIDERS } from "@/lib/auth/config"; export const LoggedInButton = async () => { const user = await currentUser(); const sessions = await getSessions(); const currentSession = await getSession(); const accounts = await getAccounts(); if (!user) return null; return ( p.isActive)} /> ); };