Skip to content

Commit

Permalink
exit dialog copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-Mushnin committed Apr 9, 2024
1 parent 95c260c commit 40c59aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/atbat/ExitDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const ExitDialog = ({
};
return (
<div className={styles.container} ref={dialogRef}>
<div className={styles.prompt}>Do you want to close At-Bat?</div>
<div className={styles.prompt}>Do you want to end At-Bat?</div>
<div className={styles.explanation}>
You are returning to the home page. You can keep the At-Bat open though.
</div>
Expand All @@ -113,7 +113,7 @@ const ExitDialog = ({
className={styles.leftButton}
onClick={handleCloseClick}
>
{closeAtBat.isLoading ? <Spinner h={4} w={4} /> : "Close at-bat"}
{closeAtBat.isLoading ? <Spinner h={4} w={4} /> : "End at-bat"}
</button>
<button
disabled={closeAtBat.isLoading}
Expand Down

0 comments on commit 40c59aa

Please sign in to comment.