'use client';

import { useEffect } from 'react';
import { useAuthStore } from '@/src/store/authStore';

export function AuthProvider({ children }: { children: React.ReactNode }) {
    // Temporarily disabled to debug login issue
    return <>{children}</>;
}
