Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ android {
applicationId "io.metamask"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionName "7.67.0"
versionName "7.68.0"
versionCode 3607
testBuildType System.getProperty('testBuildType', 'debug')
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion app/components/Nav/Main/MainNavigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ const SettingsFlow = () => {
<Stack.Screen
name="ContactsSettings"
component={Contacts}
options={Contacts.navigationOptions}
options={{ headerShown: false }}
/>
<Stack.Screen
name="ContactForm"
Expand Down
139 changes: 0 additions & 139 deletions app/components/UI/BiometryButton/BiometryButton.tsx

This file was deleted.

152 changes: 0 additions & 152 deletions app/components/UI/BiometryButton/index.test.tsx

This file was deleted.

1 change: 0 additions & 1 deletion app/components/UI/BiometryButton/index.ts

This file was deleted.

22 changes: 0 additions & 22 deletions app/components/UI/BiometryButton/styles.ts

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React from 'react';
import { TouchableOpacity, TouchableOpacityProps } from 'react-native';
import styles from './styles';
import Icon, {
IconName,
IconSize,
IconColor,
} from '../../../component-library/components/Icons/Icon';
import { LoginViewSelectors } from '../../Views/Login/LoginView.testIds';

type DeviceAuthenticationButtonProps = {
hidden: boolean;
} & TouchableOpacityProps;

const DeviceAuthenticationButton = ({
hidden,
...props
}: DeviceAuthenticationButtonProps) => {
if (hidden) return null;

return (
<TouchableOpacity
testID={LoginViewSelectors.BIOMETRY_BUTTON}
hitSlop={styles.hitSlop}
{...props}
>
<Icon
color={IconColor.Default}
style={styles.fixCenterIcon}
size={IconSize.Lg}
name={IconName.SecurityKey}
testID={LoginViewSelectors.DEVICE_AUTHENTICATION_ICON}
/>
</TouchableOpacity>
);
};

export default DeviceAuthenticationButton;
Loading
Loading