Skip to content

Commit

Permalink
Merge branch 'main' into fix-9077-minimal-input-must-be-string
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnyhoward authored Sep 4, 2024
2 parents f630624 + 20cf0ab commit 9893448
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/components/UI/WalletAction/WalletAction.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
// Third party dependencies.
import React from 'react';
import { View, TouchableOpacity } from 'react-native';
import { lightTheme } from '@metamask/design-tokens';

// External dependencies.
import Text, {
TextVariant,
} from '../../../component-library/components/Texts/Text';
import { useTheme } from '../../../util/theme';
import { useStyles } from '../../../component-library/hooks';
// Internal dependencies.
import { WalletActionProps } from './WalletAction.types';
Expand All @@ -25,7 +26,7 @@ const WalletAction = ({
actionID,
...props
}: WalletActionProps) => {
const { colors } = useTheme();
const { colors } = lightTheme;
const { styles } = useStyles(styleSheet, {});
return (
<TouchableOpacity
Expand Down

0 comments on commit 9893448

Please sign in to comment.