diff --git a/packages/ui/src/components/nav/NotificationPanel.vue b/packages/ui/src/components/nav/NotificationPanel.vue index 2fb4d2599..df04fb934 100644 --- a/packages/ui/src/components/nav/NotificationPanel.vue +++ b/packages/ui/src/components/nav/NotificationPanel.vue @@ -115,7 +115,8 @@ function copyToClipboard(notif: WebNotification): void { navigator.clipboard.writeText(text) setTimeout(() => { - delete copied.value[text] + const { [text]: _, ...rest } = copied.value + copied.value = rest }, 2000) }