From 8afea0ca2f507e5b65e1039b4d9cb484ecb548ea Mon Sep 17 00:00:00 2001 From: Krishan <33421343+kfiven@users.noreply.github.com> Date: Sun, 17 Apr 2022 10:22:01 +0530 Subject: [PATCH] Update SpaceOptions.jsx --- src/app/molecules/space-options/SpaceOptions.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/molecules/space-options/SpaceOptions.jsx b/src/app/molecules/space-options/SpaceOptions.jsx index 4b3e8cad..e9b72cb6 100644 --- a/src/app/molecules/space-options/SpaceOptions.jsx +++ b/src/app/molecules/space-options/SpaceOptions.jsx @@ -55,7 +55,7 @@ function SpaceOptions({ roomId, afterOptionSelect }) { }; const handleLeaveClick = () => { - if (confirm('Are you really want to leave this space?')) { + if (confirm('Are you sure that you want to leave this space?')) { leave(roomId); afterOptionSelect(); }