Skip to content

Commit

Permalink
chore: updated legalView right icon
Browse files Browse the repository at this point in the history
  • Loading branch information
OtavioStasiak authored and diegolmello committed Feb 17, 2025
1 parent 9f03d62 commit 04fc9c1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/views/LegalView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import openLink from '../lib/methods/helpers/openLink';
import { useTheme } from '../theme';
import SafeAreaView from '../containers/SafeAreaView';
import * as List from '../containers/List';
import NewWindowIcon from '../containers/NewWindowIcon';
import { OutsideParamList } from '../stacks/types';
import { IBaseScreen, IApplicationState } from '../definitions';

Expand Down Expand Up @@ -41,14 +42,14 @@ const LegalView = ({ navigation }: ILegalViewProps): React.ReactElement => {
title='Terms_of_Service'
onPress={() => onPressItem({ route: 'terms-of-service' })}
testID='legal-terms-button'
showActionIndicator
right={() => <NewWindowIcon />}
/>
<List.Separator />
<List.Item
title='Privacy_Policy'
onPress={() => onPressItem({ route: 'privacy-policy' })}
testID='legal-privacy-button'
showActionIndicator
right={() => <NewWindowIcon />}
/>
<List.Separator />
</List.Section>
Expand Down

0 comments on commit 04fc9c1

Please sign in to comment.