From 088e4b1d9281501362d6509a975d376af60abd93 Mon Sep 17 00:00:00 2001 From: Stivenjs Date: Thu, 22 May 2025 16:22:32 -0500 Subject: [PATCH] feat(auth): add 'use client' directive to AuthClient component This commit introduces the 'use client' directive at the top of the AuthClient.tsx file, indicating that the component is intended for client-side rendering. This change enhances the component's functionality and aligns it with the current architecture of the application. --- .../login/components/main-components/AuthClient.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/(setup-layout)/login/components/main-components/AuthClient.tsx b/app/(setup-layout)/login/components/main-components/AuthClient.tsx index ca47583c..390c7c58 100644 --- a/app/(setup-layout)/login/components/main-components/AuthClient.tsx +++ b/app/(setup-layout)/login/components/main-components/AuthClient.tsx @@ -1,3 +1,5 @@ +'use client' + import { AuthForm } from '@/app/(setup-layout)/login/components/main-components/AuthForm' import ImageSlider from '@/app/(setup-layout)/login/components/main-components/ImageSlider'