(id: string)
| 176 | } |
| 177 | |
| 178 | const handleDelete = (id: string) => { |
| 179 | setShortcuts((prev) => prev.filter((s) => s.id !== id)) |
| 180 | } |
| 181 | |
| 182 | const handleCreateNew = () => { |
| 183 | const newShortcut: Shortcut = { |
no outgoing calls
no test coverage detected
searching dependent graphs…