Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Brent Vatne <brentvatne@gmail.com>
  • Loading branch information
gabrieldonadel and brentvatne committed Mar 6, 2024
1 parent 9dc3059 commit 99bf8da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/menu-bar/src/popover/Core.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function Core(props: Props) {
if (!storage.getString(sessionSecretStorageKey)) {
Alert.alert(
'You need to be logged in to launch updates.',
'Please log in through the Settings window and try again.'
'Log in through the Settings window and try again.'
);
return;
}
Expand Down Expand Up @@ -251,8 +251,8 @@ function Core(props: Props) {
if (error instanceof Error) {
if (error instanceof InternalError && error.code === 'NO_DEVELOPMENT_BUILDS_AVAILABLE') {
Alert.alert(
'Unable to find Development Build',
`${error.message} Please generate a new Development Build or, if the app is already installed on the device and uses the correct runtime version, you can attempt to launch the update using a deep link.`,
'Unable to find a compatible development build',
`${error.message} Either create a new development build with EAS Build or, if the app is already installed on the target device and uses the correct runtime version, you can launch the update using a deep link.`,
[
{ text: 'OK', onPress: () => {} },
{
Expand Down

0 comments on commit 99bf8da

Please sign in to comment.