| 5 | import { toast } from 'sonner'; |
| 6 | |
| 7 | interface ViewAllDialogProps { |
| 8 | title: string; |
| 9 | addresses: |
| 10 | | Array<{ |
| 11 | id: number; |
| 12 | value: string; |
| 13 | userId: string; |
| 14 | }> |
| 15 | | undefined; |
| 16 | onDelete: (id: number) => void; |
| 17 | } |
| 18 | |
| 19 | export const ViewAllDialog: React.FC<ViewAllDialogProps> = ({ |
| 20 | title, |
nothing calls this directly
no outgoing calls
no test coverage detected