(key)
| 211 | } |
| 212 | }; |
| 213 | const handleDelete = (key) => { |
| 214 | const updateAnnotations = annotations.filter((x) => x.key !== key); |
| 215 | setAnnotations(updateAnnotations); |
| 216 | }; |
| 217 | return ( |
| 218 | <div> |
| 219 | {copied && <Alert type="success">{t("copied")}</Alert>} |
no outgoing calls
no test coverage detected