From cb8ce32a4920c885dbd675d9742087182baf0c04 Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 12 Sep 2024 23:39:01 +0100 Subject: [PATCH] fix toast for bsr copy --- src/components/player/score/score-buttons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/player/score/score-buttons.tsx b/src/components/player/score/score-buttons.tsx index 8cc9d94..54b955f 100644 --- a/src/components/player/score/score-buttons.tsx +++ b/src/components/player/score/score-buttons.tsx @@ -41,7 +41,7 @@ export default function ScoreButtons({ onClick={() => { toast({ title: "Copied!", - description: `Copied "!bsr ${beatSaverMap}" to your clipboard!`, + description: `Copied "!bsr ${beatSaverMap.bsr}" to your clipboard!`, }); copyToClipboard(`!bsr ${beatSaverMap.bsr}`); }}