fix: use falsy check instead of typeof
This commit is contained in:
parent
5f2e5b4ae8
commit
08ff0ee8e2
@ -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.",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user