Skip to content

Commit

Permalink
Fix fallback icon in snaps simulator (#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederikBolding authored Sep 6, 2023
1 parent 806975b commit 4b6bcfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/snaps-simulator/src/components/SnapIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const SnapIcon: FunctionComponent<SnapIconProps> = ({ snapName }) => {
<Box position="relative">
<Avatar
src={blobUrl as string}
name={snapName.slice(1, 2).toUpperCase()}
name={snapName.slice(0, 1).toUpperCase()}
fontSize="md"
background="background.alternative"
color="text.alternative"
Expand Down

0 comments on commit 4b6bcfa

Please sign in to comment.