From de23f453a0c475a08a5614a642ecc01887dc258a Mon Sep 17 00:00:00 2001 From: duckietm Date: Mon, 6 May 2024 10:57:20 +0200 Subject: [PATCH] Cleanup: Profile Icon --- src/common/layout/UserProfileIconView.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/layout/UserProfileIconView.tsx b/src/common/layout/UserProfileIconView.tsx index d31fa66..2a7dc2e 100644 --- a/src/common/layout/UserProfileIconView.tsx +++ b/src/common/layout/UserProfileIconView.tsx @@ -5,12 +5,11 @@ import { Base, BaseProps } from '../Base'; export interface UserProfileIconViewProps extends BaseProps { userId?: number; - userName?: string; } export const UserProfileIconView: FC = props => { - const { userId = 0, userName = null, classNames = [], pointer = true, children = null, ...rest } = props; + const { userId = 0, classNames = [], pointer = true, children = null, ...rest } = props; const getClassNames = useMemo(() => {