Skip to content

Commit 5508bad

Browse files
committed
fix: typings
1 parent 07b0aa6 commit 5508bad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin/src/components/UserAvatar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { renderInitials } from '../../utils';
77
import { AdminAvatar } from './AdminAvatar';
88

99
type Props = Readonly<Pick<Author, 'avatar'> & {
10-
readonly name?: string;
10+
readonly name?: string | null;
1111
readonly isAdminComment: boolean | null;
1212
}>
1313
export const UserAvatar: FC<Props> = ({ avatar, isAdminComment, name }) => {

0 commit comments

Comments
 (0)