Skip to content

Commit

Permalink
Fix typescript error: optional, instead of undefinable ensImage
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaw3d committed Aug 28, 2024
1 parent c2e77d9 commit 6c9edc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/components/AccountAvatar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { addressToJazzIconSeed } from "./addressToJazzIconSeed";
type AccountAvatarProps = {
address: string;
size: number;
ensImage: string | null | undefined;
ensImage?: string | null;
};

export const AccountAvatar: FC<AccountAvatarProps> = ({ address, size }) => {
Expand Down

0 comments on commit 6c9edc7

Please sign in to comment.