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 (
Sign in continue