From d89e3079506cb8d47647b0ac71763e8a2e888ecb Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sun, 18 Feb 2024 00:46:21 +1300 Subject: [PATCH] Fix tooltip on settings page vibration --- SettingsPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SettingsPage.tsx b/SettingsPage.tsx index 89d9e32..1b21717 100644 --- a/SettingsPage.tsx +++ b/SettingsPage.tsx @@ -341,8 +341,8 @@ export default function SettingsPage() { onChange={async (value) => { setValue("vibrate", value); await settingsRepo.update({}, { vibrate: value }); - if (value) toast("Timers will now run after each set."); - else toast("Stopped timers running after each set."); + if (value) toast("Alarms will vibrate."); + else toast("Stopped alarms from vibrating."); }} title={name} />