From 16bbfe4d4c4d6c8bf95a3ce1344191907a482136 Mon Sep 17 00:00:00 2001 From: James Telfer <792299+jamestelfer@users.noreply.github.com> Date: Mon, 26 Sep 2022 14:17:56 +1000 Subject: [PATCH] fix: typo in prompt --- components/layout/GameLayout.tsx | 8 ++++---- components/party/PartyScreen.tsx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/components/layout/GameLayout.tsx b/components/layout/GameLayout.tsx index a76bc93..95f16cc 100644 --- a/components/layout/GameLayout.tsx +++ b/components/layout/GameLayout.tsx @@ -179,7 +179,7 @@ const GameLayout = ({ hostOnly: false, onClick: useCallback(() => { Swal.fire({ - title: "Are your sure?", + title: "Are you sure?", text: "If reloading doesn't fix your issue, tell your party host, " + hostName + @@ -202,7 +202,7 @@ const GameLayout = ({ hostOnly: true, onClick: useCallback(() => { Swal.fire({ - title: "Are your sure?", + title: "Are you sure?", text: "Your current session in " + thisGame.name + @@ -225,7 +225,7 @@ const GameLayout = ({ hostOnly: true, onClick: useCallback(() => { Swal.fire({ - title: "Are your sure?", + title: "Are you sure?", text: "Your current session in " + thisGame.name + @@ -252,7 +252,7 @@ const GameLayout = ({ const promptMute = () => { Swal.fire({ - title: "Are your sure?", + title: "Are you sure?", text: "New chat messages won't appear over your game, but you can still see them in the menu!", showCancelButton: true, diff --git a/components/party/PartyScreen.tsx b/components/party/PartyScreen.tsx index a66b0c2..d6f6e94 100644 --- a/components/party/PartyScreen.tsx +++ b/components/party/PartyScreen.tsx @@ -76,7 +76,7 @@ const PartyScreen = ({ const promptLeave = useCallback(() => { Swal.fire({ - title: "Are your sure?", + title: "Are you sure?", showCancelButton: true, confirmButtonText: leaveText, icon: "warning",