fix: use falsy check instead of typeof

This commit is contained in:
p-sw 2024-06-04 22:57:47 +09:00
parent 5f2e5b4ae8
commit 08ff0ee8e2

View File

@ -32,8 +32,8 @@ export const LoadedCode = ({
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={() => {
if (typeof state === "string" && state.length > 0) { if (state && state.length > 0) {
navigator.clipboard.writeText(state ?? ""); void navigator.clipboard.writeText(state ?? "");
toast({ toast({
title: "Copied", title: "Copied",
description: "The code has been copied to your clipboard.", description: "The code has been copied to your clipboard.",