From 4d35d617e87873304802c644faeda1e67cbada6d Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sun, 16 Oct 2022 14:37:31 +1300 Subject: [PATCH] Change wording on new record notification --- EditSet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EditSet.tsx b/EditSet.tsx index f5c87e0..9e9edb8 100644 --- a/EditSet.tsx +++ b/EditSet.tsx @@ -75,7 +75,7 @@ export default function EditSet() { value.weight > set.weight || (value.reps > set.reps && value.weight === set.weight) ) - toast("Great work King, that's a new record!", 3000); + toast("Great work King! That's a new record.", 3000); navigation.goBack(); }, [navigation, startTimer, set, toast, settings],