fix: add void to explicitly ignore promise
This commit is contained in:
parent
08ff0ee8e2
commit
f7ce1e8a1f
@ -86,7 +86,7 @@ export const Code = forwardRef<HTMLDivElement, { children: string; className?: s
|
|||||||
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(children ?? "");
|
void navigator.clipboard.writeText(children ?? "");
|
||||||
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