(command: SlashCommand)
| 197 | }; |
| 198 | |
| 199 | const handleDeleteClick = (command: SlashCommand) => { |
| 200 | setCommandToDelete(command); |
| 201 | setDeleteDialogOpen(true); |
| 202 | }; |
| 203 | |
| 204 | const confirmDelete = async () => { |
| 205 | if (!commandToDelete) return; |
no outgoing calls
no test coverage detected