Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jorbuedo committed Oct 11, 2024
1 parent acb9da3 commit 69c5031
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const ReviewTxScreen = () => {
</MaterialTab.Navigator>

<Actions>
<Button title={strings.confirm} shelleyTheme onPress={onConfirm} />
<Button title={strings.confirm} onPress={onConfirm} />
</Actions>
</SafeArea>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const InitialCollateralInfoModal = ({onConfirm}: {onConfirm: () => void})
<Space fill />

<View style={styles.actions}>
<Button title={strings.initialCollateralInfoModalButton} mainTheme onPress={onConfirm} />
<Button title={strings.initialCollateralInfoModalButton} onPress={onConfirm} />
</View>
</View>
)
Expand Down

0 comments on commit 69c5031

Please sign in to comment.