Skip to content

Commit

Permalink
fix: remove userCard update
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelVallenet committed Nov 30, 2024
1 parent cc6c66f commit 33e88f3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/components/user/UserCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ import { UserAvatarWithFrame } from "../images/AvatarWithFrame";
export const UserCard: React.FC<{
userId: string;
style: StyleProp<BoxStyle>;
roles?: string[];
daoId?: string;
}> = ({ userId, style, daoId, roles }) => {
}> = ({ userId, style, daoId }) => {
const [, userAddress] = parseUserId(userId);
const { metadata } = useNSUserInfo(userId);
const selectedWallet = useSelectedWallet();
Expand Down Expand Up @@ -115,7 +114,6 @@ export const UserCard: React.FC<{

<View>
<FollowingFollowers style={{ marginBottom: 10 }} />

<BrandText
style={[fontSemibold12, { lineHeight: 14, marginBottom: 8 }]}
>
Expand Down

0 comments on commit 33e88f3

Please sign in to comment.