import type { AuthTypes } from "@medusajs/types" import AvatarBox from "../../../components/common/logo-box/avatar-box" import { MfaChallengeForm } from "./mfa-challenge-form" type MfaChallengeCardProps = { challenge: AuthTypes.AuthMfaChallengeDTO onSuccess: (token: string) => void | Promise onBack?: () => void } export const MfaChallengeCard = ({ challenge, onSuccess, onBack, }: MfaChallengeCardProps) => { return (
) }