({
prefill,
...props
}: AlertManagerProps)
| 43 | type Tab = "alerts" | "settings"; |
| 44 | |
| 45 | export default function AlertManager({ |
| 46 | prefill, |
| 47 | ...props |
| 48 | }: AlertManagerProps) { |
| 49 | const prefillKey = prefill?.marketId ?? "none"; |
| 50 | return <AlertManagerContent key={prefillKey} prefill={prefill} {...props} />; |
| 51 | } |
| 52 | |
| 53 | function AlertManagerContent({ |
| 54 | open, |
nothing calls this directly
no outgoing calls
no test coverage detected