From d9997ff5e957e2f830627901b5257cb8a94a8614 Mon Sep 17 00:00:00 2001 From: charlesgauthereau Date: Tue, 23 Dec 2025 22:10:00 +0100 Subject: [PATCH] Changing assets with new DA. --- src/components/wrappers/auth/auth-logo-section.tsx | 2 +- .../wrappers/dashboard/profile/profile-providers.tsx | 5 ++--- src/features/layout/card-auth.tsx | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/wrappers/auth/auth-logo-section.tsx b/src/components/wrappers/auth/auth-logo-section.tsx index 3a5c9b08..81d1a0e5 100644 --- a/src/components/wrappers/auth/auth-logo-section.tsx +++ b/src/components/wrappers/auth/auth-logo-section.tsx @@ -41,7 +41,7 @@ export const AuthLogoSection = () => { /> )} - + v{env.NEXT_PUBLIC_PROJECT_VERSION} diff --git a/src/components/wrappers/dashboard/profile/profile-providers.tsx b/src/components/wrappers/dashboard/profile/profile-providers.tsx index c6bf8121..78131aa2 100644 --- a/src/components/wrappers/dashboard/profile/profile-providers.tsx +++ b/src/components/wrappers/dashboard/profile/profile-providers.tsx @@ -73,9 +73,8 @@ export function ProfileProviders({accounts}: ProfileProviderProps) { {SUPPORTED_PROVIDERS.map((provider) => { const linkedAccount = accounts.find((acc) => acc.providerId === provider.id); const isConnected = !!linkedAccount; - console.log(totalConnected); - const canUnlink = totalConnected > 1 || (totalConnected === 1 && !provider.isManual); - console.log(canUnlink); + // const canUnlink = totalConnected > 1 || (totalConnected === 1 && !provider.isManual); + const canUnlink = totalConnected > 1 ; // const isLoading = isUnlinking || isLinking; const isLoading = loadingProvider === provider.id; diff --git a/src/features/layout/card-auth.tsx b/src/features/layout/card-auth.tsx index bb4364a3..a1f7e558 100644 --- a/src/features/layout/card-auth.tsx +++ b/src/features/layout/card-auth.tsx @@ -8,7 +8,7 @@ export function CardAuth({ className, ...props }: React.ComponentProps<"div">) { data-slot="card" className={cn( "bg-transparent border-none py-3", - "md:bg-card text-card-foreground flex flex-col gap-6 rounded-xl md:border-solid md:border md:py-6 shadow-sm", + "md:bg-card text-card-foreground flex flex-col gap-6 rounded-xl md:border-solid md:border md:py-6 md:shadow-sm", className )} {...props}