fix: add error message when LoadedCode copy is not successful

This commit is contained in:
p-sw 2024-06-03 14:22:00 +09:00
parent e4ff38a653
commit b2af7a97b2

View File

@ -37,12 +37,20 @@ export const LoadedCode = forwardRef<
size="icon"
className="absolute top-4 right-4 text-black dark:text-white z-10"
onClick={() => {
if (typeof state === "string" && state.length > 0) {
navigator.clipboard.writeText(state ?? "");
toast({
title: "Copied",
description: "The code has been copied to your clipboard.",
status: "success",
});
} else {
toast({
title: "Error",
description: "It seems like code is not loaded yet.",
status: "error",
});
}
}}
>
<svg