diff --git a/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/PublicLink.tsx b/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/PublicLink.tsx index 6bc4a1fab3..6b01df2353 100644 --- a/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/PublicLink.tsx +++ b/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings/FlowStatus/PublicLink.tsx @@ -2,7 +2,6 @@ import ContentCopyIcon from "@mui/icons-material/ContentCopy"; import Box from "@mui/material/Box"; import Button from "@mui/material/Button"; import Link from "@mui/material/Link"; -import Tooltip from "@mui/material/Tooltip"; import Typography from "@mui/material/Typography"; import { FlowStatus } from "@opensystemslab/planx-core/types"; import React, { useState } from "react"; @@ -11,27 +10,25 @@ import SettingsDescription from "ui/editor/SettingsDescription"; const CopyButton = (props: { link: string; isActive: boolean }) => { const [copyMessage, setCopyMessage] = useState<"copy" | "copied">("copy"); return ( - - - + ); };