From 09909514d594cab2f2b171d989972909651615a1 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Fri, 10 Jul 2026 01:07:55 -0400 Subject: [PATCH] fix: update NFC URL generation to support iOS platform in ChoreModals component --- src/views/Chores/components/ChoreModals.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/Chores/components/ChoreModals.jsx b/src/views/Chores/components/ChoreModals.jsx index 9191088..4f31ad0 100644 --- a/src/views/Chores/components/ChoreModals.jsx +++ b/src/views/Chores/components/ChoreModals.jsx @@ -6,7 +6,7 @@ import TextModal from '../../Modals/Inputs/TextModal' import WriteNFCModal from '../../Modals/Inputs/WriteNFCModal' const getNFCUrl = choreId => - Capacitor.getPlatform() === 'android' + Capacitor.getPlatform() === 'android' || Capacitor.getPlatform() === 'ios' ? `donetick://chores/${choreId}` : `${window.location.origin}/chores/${choreId}` @@ -77,7 +77,6 @@ const ChoreModals = ({ /> )} - {activeModal === 'nudge' && modalChore && (