(id: string)
| 171 | } |
| 172 | |
| 173 | const handleDelete = (id: string) => { |
| 174 | setShortcuts((prev) => prev.filter((s) => s.id !== id)) |
| 175 | } |
| 176 | |
| 177 | const handleCreateNew = () => { |
| 178 | const newShortcut: Shortcut = { |
no outgoing calls
no test coverage detected
searching dependent graphs…