Skip to content

Commit

Permalink
Solve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
gantunesr committed Dec 28, 2022
2 parents a27596c + e94e0f0 commit 086b4f8
Show file tree
Hide file tree
Showing 229 changed files with 4,462 additions and 6,938 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Current Main Branch

## 5.12.3 - Dec 16, 2022
- Hotfix version bump for iOS only release, no code changes

## 5.12.1 - Dec 6, 2022
- [#5366](https://github.com/MetaMask/metamask-mobile/pull/5366): [UPDATE] On-ramp Refactor wyre authentication url approach
- [#5362](https://github.com/MetaMask/metamask-mobile/pull/5362): [UPDATE] copy for Opt in metrics screen and enable custom mainnet RPC
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ android {
applicationId "io.metamask"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1030
versionName "5.12.1"
versionCode 1033
versionName "5.12.3"
multiDexEnabled true
testBuildType System.getProperty('testBuildType', 'debug')
missingDimensionStrategy "minReactNative", "minReactNative46"
Expand Down
4 changes: 1 addition & 3 deletions app/components/Base/Alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ import {
TextStyle,
} from 'react-native';
import IonicIcon from 'react-native-vector-icons/Ionicons';
import CustomText from './Text';
import Text from './Text';
import { useTheme } from '../../util/theme';
// TODO: Convert into typescript and correctly type optionals
const Text = CustomText as any;

export enum AlertType {
Info = 'Info',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import { ThemeColors } from '@metamask/design-tokens/dist/js/themes/types';
import React from 'react';
import { SafeAreaView, StyleSheet, ScrollView } from 'react-native';
import { useTheme } from '../../../../util/theme';
import { useTheme } from '../../util/theme';

const createStyles = (colors) =>
const createStyles = (colors: ThemeColors) =>
StyleSheet.create({
wrapper: {
backgroundColor: colors.background.default,
flex: 1,
},
});

const ScreenView = (props) => {
const ScreenView: React.FC = (props) => {
const { colors } = useTheme();
const styles = createStyles(colors);

Expand Down
274 changes: 0 additions & 274 deletions app/components/Base/Text.js

This file was deleted.

File renamed without changes.
Loading

0 comments on commit 086b4f8

Please sign in to comment.