| 3 | import type React from "react" |
| 4 | |
| 5 | interface ErrorToastProps { |
| 6 | message: React.ReactNode |
| 7 | onDismiss: () => void |
| 8 | } |
| 9 | |
| 10 | export function ErrorToast({ message, onDismiss }: ErrorToastProps) { |
| 11 | const handleKeyDown = (e: React.KeyboardEvent) => { |
nothing calls this directly
no outgoing calls
no test coverage detected