From a15d99118263c7784b2a310788cd9f1af997471e Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 12 Jan 2025 01:58:26 +1100 Subject: [PATCH] Modify Retirement to Quitting, change reveal message to fish related message --- src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 7e137e4..ec63d77 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -36,7 +36,7 @@ const RetirementCountdown = () => { return (
-

Tombay retires in:

+

Tombay quits in:

{Object.keys(timeLeft).length > 0 ? (
@@ -45,7 +45,7 @@ const RetirementCountdown = () => {
) : ( -

Congratulations! You're retired!

+

So long, and thanks for the fish!!! 🐟🐟🐟

)}
);