import React from 'react' interface AuthErrorPopupProps { show: boolean authUrl?: string onClose?: () => void } export function AuthErrorPopup({ show, authUrl = '/api/login', onClose }: AuthErrorPopupProps) { if (!show) return null return (
{onClose && ( )}

Sign in continue

Sign in with Hugging Face
) }