Component that provides a button to view and copy a confidence test command for debugging and bug reporting purposes.
The test command allows users to reproduce the confidence calculation locally using the npm test:confidence script.
The manga match result to generate a test command for
Button component with export functionality
export function ConfidenceTestExporter({ match,}: Readonly<ConfidenceTestExporterProps>): React.ReactNode { return ( <div className="flex gap-1"> <Suspense fallback={null}> <ConfidenceTestModalLazy match={match} /> </Suspense> </div> );} Copy
export function ConfidenceTestExporter({ match,}: Readonly<ConfidenceTestExporterProps>): React.ReactNode { return ( <div className="flex gap-1"> <Suspense fallback={null}> <ConfidenceTestModalLazy match={match} /> </Suspense> </div> );}
Component that provides a button to view and copy a confidence test command for debugging and bug reporting purposes.
The test command allows users to reproduce the confidence calculation locally using the npm test:confidence script.