| 10 | import BetaBadge from "./BetaBadge"; |
| 11 | |
| 12 | interface Props { |
| 13 | conversation: Conversation; |
| 14 | close: () => void; |
| 15 | } |
| 16 | |
| 17 | const UpdateConversationModal = (props: Props) => { |
| 18 | const { close, conversation } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected