// src/components/SignInOverlay.jsx import React from 'react'; import { useAuth } from '../auth/AuthProvider'; export default function SignInOverlay() { const { signIn, isLoading, error, clearError } = useAuth(); return (

AdPlatform

API Test Harness

{error && (
{error}
)}

Sign in with your organization account to access the test dashboard.

Powered by Azure Entra External ID
); }