diff --git a/frontend/src/views/Settings/ProjectSettingsPage/components/ProjectNameChangeSection/CopyButton.tsx b/frontend/src/views/Settings/ProjectSettingsPage/components/ProjectNameChangeSection/CopyButton.tsx index 4add9df76..8337d1c4d 100644 --- a/frontend/src/views/Settings/ProjectSettingsPage/components/ProjectNameChangeSection/CopyButton.tsx +++ b/frontend/src/views/Settings/ProjectSettingsPage/components/ProjectNameChangeSection/CopyButton.tsx @@ -9,10 +9,11 @@ import { useToggle } from "@app/hooks"; type Props = { value: string; hoverText: string; + notificationText: string; children: React.ReactNode; }; -export const CopyButton = ({ value, children, hoverText }: Props) => { +export const CopyButton = ({ value, children, hoverText, notificationText }: Props) => { const [isProjectIdCopied, setIsProjectIdCopied] = useToggle(false); const { createNotification } = useNotificationContext(); @@ -25,7 +26,7 @@ export const CopyButton = ({ value, children, hoverText }: Props) => { navigator.clipboard.writeText(value); createNotification({ - text: "Copied Project ID to clipboard", + text: notificationText, type: "success" }); @@ -43,7 +44,7 @@ export const CopyButton = ({ value, children, hoverText }: Props) => { onClick={copyToClipboard} > {children} - + {hoverText}