Skip to content

Commit

Permalink
Merge pull request #786 from chainapsis/Heesung/fix-light-mode-mistake
Browse files Browse the repository at this point in the history
Fix token view text color
  • Loading branch information
Thunnini authored Jul 6, 2023
2 parents 79821e0 + bedc112 commit bfcd6b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/extension/src/pages/main/components/token/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export const TokenItem: FunctionComponent<TokenItemProps> = observer(
color={
theme.mode === "light"
? ColorPalette["gray-700"]
: ColorPalette["gray-300"]
: ColorPalette["gray-10"]
}
style={{
wordBreak: "break-all",
Expand Down Expand Up @@ -328,7 +328,7 @@ export const TokenItem: FunctionComponent<TokenItemProps> = observer(
color={
theme.mode === "light"
? ColorPalette["gray-700"]
: ColorPalette["gray-300"]
: ColorPalette["gray-10"]
}
>
{viewToken.token
Expand Down

0 comments on commit bfcd6b6

Please sign in to comment.