diff --git a/frontend/src/components/util.tsx b/frontend/src/components/util.tsx
index 495da080d..c9d6f985a 100644
--- a/frontend/src/components/util.tsx
+++ b/frontend/src/components/util.tsx
@@ -10,6 +10,8 @@ import {
DialogContent,
DialogFooter,
} from "@ui/dialog";
+// import { useNavigate } from "react-router-dom";
+import { toast } from "@ui/toast/use-toast";
export const WithLoading = ({
children,
@@ -122,8 +124,18 @@ export const ActionWithDialog = ({
+
{
+ navigator.clipboard.writeText(name);
+ toast({ title: `Copied "${name}" to clipboard!` });
+ }}
+ className="cursor-pointer"
+ >
Please enter {name} below to confirm this action.
+
+
+ You may click the name in bold to copy it
+