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(() => {