Skip to content

Commit

Permalink
bugfix(LIVE-8841): use boxed mode for all provider icons
Browse files Browse the repository at this point in the history
  • Loading branch information
cng-ledger committed Aug 2, 2023
1 parent 0f54c32 commit 621495b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function StakingIcon({ icon }: Props) {
if (iconType === "provider") {
return (
<ProviderIconContainer>
<ProviderIcon name={iconName} size="S" boxed={true} />
<ProviderIcon name={iconName} size="S" />
</ProviderIconContainer>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function Rate({
>
{icon && (
<Box mr={2}>
<ProviderIcon size="S" name={icon} boxed={true} />
<ProviderIcon size="S" name={icon} />
</Box>
)}
<Box flex={1}>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { getProviderIconUrl } from "@ledgerhq/live-common/icons/providers/providers";
import { ProviderIconSize } from "@ledgerhq/live-common/icons/providers/sizes";
import * as Styles from "./styles";;
import * as Styles from "./styles";

export type Props = {
name: string;
Expand Down

0 comments on commit 621495b

Please sign in to comment.