Skip to content

Commit

Permalink
fix: typings
Browse files Browse the repository at this point in the history
  • Loading branch information
cyp3rius committed Jan 17, 2025
1 parent 07b0aa6 commit 5508bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/src/components/UserAvatar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { renderInitials } from '../../utils';
import { AdminAvatar } from './AdminAvatar';

type Props = Readonly<Pick<Author, 'avatar'> & {
readonly name?: string;
readonly name?: string | null;
readonly isAdminComment: boolean | null;
}>
export const UserAvatar: FC<Props> = ({ avatar, isAdminComment, name }) => {
Expand Down

0 comments on commit 5508bad

Please sign in to comment.