| 426 | }; |
| 427 | |
| 428 | interface FilePathButtonProps { |
| 429 | frame: StackFrame; |
| 430 | onFilePathClick?: ( |
| 431 | filePath: string, |
| 432 | lineNumber?: number, |
| 433 | columnNumber?: number |
| 434 | ) => void; |
| 435 | } |
| 436 | |
| 437 | const FilePathButton = memo( |
| 438 | ({ frame, onFilePathClick }: FilePathButtonProps) => { |
nothing calls this directly
no outgoing calls
no test coverage detected