From ed597f00c039e95e1480314074d1a71cf0ae7cd9 Mon Sep 17 00:00:00 2001 From: SagarRajput-7 <162284829+SagarRajput-7@users.noreply.github.com> Date: Thu, 27 Mar 2025 11:24:34 +0530 Subject: [PATCH] fix: fixed copy to clipboard popup getting flooded on every click (#7448) --- frontend/src/components/Logs/CopyClipboardHOC.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/Logs/CopyClipboardHOC.tsx b/frontend/src/components/Logs/CopyClipboardHOC.tsx index 65cb6fc854..0661a78ea1 100644 --- a/frontend/src/components/Logs/CopyClipboardHOC.tsx +++ b/frontend/src/components/Logs/CopyClipboardHOC.tsx @@ -18,6 +18,7 @@ function CopyClipboardHOC({ notifications.success({ message: notificationMessage, + key: notificationMessage, }); } }, [value, notifications, entityKey]);