From d607d9565f174f905219ff816e184628d9b32d14 Mon Sep 17 00:00:00 2001 From: Nathan Totten Date: Fri, 7 Feb 2025 07:07:44 -0500 Subject: [PATCH] update command --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 3ab1c3f..f029428 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -21,7 +21,7 @@ export default function UUIDGenerator() { }); }, [uuid]); - const cmd = `curl -s -w "\n" https://uuid.new`; + const cmd = 'curl -s -w "\\n" https://uuid.new'; const copyShellCommand = useCallback(() => { navigator.clipboard.writeText(cmd).then(() => { setShellCopied(true);