fix: add void to explicitly ignore promise

This commit is contained in:
p-sw 2024-06-04 22:58:16 +09:00
parent 08ff0ee8e2
commit f7ce1e8a1f

View File

@ -86,7 +86,7 @@ export const Code = forwardRef<HTMLDivElement, { children: string; className?: s
size="icon"
className="absolute top-4 right-4 text-black dark:text-white z-10"
onClick={() => {
navigator.clipboard.writeText(children ?? "");
void navigator.clipboard.writeText(children ?? "");
toast({
title: "Copied",
description: "The code has been copied to your clipboard.",