Skip to content

Commit 647c649

Browse files
committed
fix: add ProfileImage types
1 parent 744214c commit 647c649

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server-components/Profile/ProfileImage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Image from 'next/image';
77
import { useState } from 'react';
88
import { HiUser } from 'react-icons/hi';
99

10-
export default function ProfileImage({ ownerEthAddr, isSmall = false }) {
10+
export default function ProfileImage({ ownerEthAddr, isSmall = false }: { ownerEthAddr: string; isSmall?: boolean }) {
1111
const src = `${config.backendUrl}/branding/get-brand-logo?address=${ownerEthAddr}`;
1212

1313
const [hasError, setHasError] = useState(false);

0 commit comments

Comments
 (0)