diff --git a/frontend/src/components/regex/RegexManager.jsx b/frontend/src/components/regex/RegexManager.jsx index 405eac6..62435a7 100644 --- a/frontend/src/components/regex/RegexManager.jsx +++ b/frontend/src/components/regex/RegexManager.jsx @@ -46,7 +46,12 @@ function RegexManager() { }; const handleCloneRegex = (regex) => { - const clonedRegex = { ...regex, id: 0, name: `${regex.name} [COPY]` }; + const clonedRegex = { + ...regex, + id: 0, + name: `${regex.name} [COPY]`, + regex101Link: '', // Remove the regex101 link when cloning + }; handleOpenModal(clonedRegex); };