Skip to content

Commit

Permalink
fix: optional param
Browse files Browse the repository at this point in the history
  • Loading branch information
fmorency committed Jan 7, 2025
1 parent b21b269 commit fd6c913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/factory/components/DenomImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const DenomImage = ({
withBackground = true,
}: {
denom: any;
withBackground: boolean;
withBackground?: boolean;
}) => {
const [imageError, setImageError] = useState(false);
const [isLoading, setIsLoading] = useState(true);
Expand Down

0 comments on commit fd6c913

Please sign in to comment.