We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 744214c commit 647c649Copy full SHA for 647c649
app/server-components/Profile/ProfileImage.tsx
@@ -7,7 +7,7 @@ import Image from 'next/image';
7
import { useState } from 'react';
8
import { HiUser } from 'react-icons/hi';
9
10
-export default function ProfileImage({ ownerEthAddr, isSmall = false }) {
+export default function ProfileImage({ ownerEthAddr, isSmall = false }: { ownerEthAddr: string; isSmall?: boolean }) {
11
const src = `${config.backendUrl}/branding/get-brand-logo?address=${ownerEthAddr}`;
12
13
const [hasError, setHasError] = useState(false);
0 commit comments