Skip to content

Commit

Permalink
fix: missing icon import for save button (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
achou11 authored May 7, 2024
1 parent ecbc8d5 commit f95d361
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/frontend/screens/ManualGpsScreen/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
} from '../../hooks/persistedState/usePersistedSettings';
import {BLACK} from '../../lib/styles';
import {IconButton} from '../../sharedComponents/IconButton';
import {SaveIcon} from '../../sharedComponents/icons';
import SaveCheck from '../../images/CheckMark.svg';
import {Select} from '../../sharedComponents/Select';
import {Text} from '../../sharedComponents/Text';
import {
Expand Down Expand Up @@ -138,7 +138,7 @@ export const ManualGpsScreen = ({
navigation.setOptions({
headerRight: () => (
<IconButton onPress={handleSavePress}>
<SaveIcon inprogress={false} />
<SaveCheck />
</IconButton>
),
});
Expand Down Expand Up @@ -211,7 +211,7 @@ export function createNavigationOptions({
headerTitle: intl(m.title),
headerRight: () => (
<IconButton>
<SaveIcon inprogress={false} />
<SaveCheck />
</IconButton>
),
};
Expand Down

1 comment on commit f95d361

@expo
Copy link

@expo expo bot commented on f95d361 May 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitHub Build Trigger Failure

The build trigger failed with the following error:

INVALID_EAS_JSON_ERROR: Invalid eas.json.
GitHub integration requires the `image` option.
See https://docs.expo.dev/build/building-from-github/#set-the-image-field-in-your-easjson to learn more.

Please check your GitHub app installation settings and your Expo project's GitHub settings to make sure you've configured everything correctly.

Please sign in to comment.