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" size="icon"
className="absolute top-4 right-4 text-black dark:text-white z-10" className="absolute top-4 right-4 text-black dark:text-white z-10"
onClick={() => { onClick={() => {
navigator.clipboard.writeText(state ?? ""); if (typeof state === "string" && state.length > 0) {
toast({ navigator.clipboard.writeText(state ?? "");
title: "Copied", toast({
description: "The code has been copied to your clipboard.", title: "Copied",
status: "success", 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 <svg