From 2088bfcb8505bc17b737b1cf6272194767d8b509 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 24 Jul 2025 14:22:44 -0700 Subject: [PATCH] typo --- src/lib/hooks/useOTAUpdates.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/hooks/useOTAUpdates.ts b/src/lib/hooks/useOTAUpdates.ts index a57816f36e..72f215fa97 100644 --- a/src/lib/hooks/useOTAUpdates.ts +++ b/src/lib/hooks/useOTAUpdates.ts @@ -99,7 +99,7 @@ export function useApplyPullRequestOTAUpdate() { ) } else { Alert.alert( - 'No Deployment Availalbe', + 'No Deployment Available', `No new deployments of ${channel} are currently available for your current native build.`, ) } @@ -108,7 +108,7 @@ export function useApplyPullRequestOTAUpdate() { const res = await checkForUpdateAsync() if (res.isAvailable) { Alert.alert( - 'Deployment Availalbe', + 'Deployment Available', `A deployment of ${channel} is availalble. Applying this deployment may result in a bricked installation, in which case you will need to reinstall the app and may lose local data. Are you sure you want to proceed?`, [ { @@ -126,7 +126,7 @@ export function useApplyPullRequestOTAUpdate() { ) } else { Alert.alert( - 'No Deployment Availalbe', + 'No Deployment Available', `No new deployments of ${channel} are currently available for your current native build.`, ) }