Skip to content

Commit

Permalink
fix:multi address home color name
Browse files Browse the repository at this point in the history
  • Loading branch information
jinming0618 committed Dec 13, 2024
1 parent fcf7809 commit 303dee2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/mobile/src/screens/Home/MultiAddressHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,8 @@ import {
usePinAddresses,
} from '@/hooks/account';
import { WalletIcon } from '@/components2024/WalletIcon/WalletIcon';
import { isSameAddress } from '@rabby-wallet/base-utils/dist/isomorphic/address';
import { sortAccountsByBalance } from '@/utils/account';
import { KEYRING_CLASS } from '@rabby-wallet/keyring-utils';
import useHomePinAddress from './hooks/useHomePinAddress';
import { ThemeColors2024 } from '@/constant/theme';

export function MultiAddressHomeHeader(prop): JSX.Element {
const { loading } = prop;
Expand Down Expand Up @@ -673,7 +671,9 @@ const getStyle = createGetStyles2024(({ colors2024, isLight }) => ({
padding: 8,
paddingLeft: 14,
borderRadius: 94,
backgroundColor: isLight ? '#131416' : colors2024['brand-default'],
backgroundColor: isLight
? ThemeColors2024.dark['neutral-bg-1']
: colors2024['brand-default'],
shadowColor: colors2024['brand-light-1'],
shadowOffset: { width: 0, height: 9.411 },
shadowOpacity: 0.1,
Expand Down

0 comments on commit 303dee2

Please sign in to comment.