()
| 53 | const [isMappingInProgress, setIsMappingInProgress] = useState(false); |
| 54 | |
| 55 | async function handleConfirm() { |
| 56 | try { |
| 57 | setIsMappingInProgress(true); |
| 58 | await onMappingsSet(); |
| 59 | } finally { |
| 60 | setIsMappingInProgress(false); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | return ( |
| 65 | <div className="flex h-full flex-col"> |
nothing calls this directly
no test coverage detected