From 136c351f3ffac38a528a9d9df37469e93623d590 Mon Sep 17 00:00:00 2001 From: Danish Arora Date: Fri, 3 Oct 2025 19:16:39 +0530 Subject: [PATCH] chore: update moderate post icon --- app/src/components/PostList.tsx | 4 ++-- packages/react/src/v1/hooks/useUserDisplay.ts | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/app/src/components/PostList.tsx b/app/src/components/PostList.tsx index 1c4fac1..84da249 100644 --- a/app/src/components/PostList.tsx +++ b/app/src/components/PostList.tsx @@ -20,7 +20,7 @@ import { ArrowUp, ArrowDown, RefreshCw, - Shield, + MessageSquareX, UserX, } from 'lucide-react'; import { formatDistanceToNow } from 'date-fns'; @@ -360,7 +360,7 @@ const PostList = () => { className="h-6 w-6 text-cyber-neutral hover:text-orange-500" onClick={() => handleModerate(post.id)} > - + diff --git a/packages/react/src/v1/hooks/useUserDisplay.ts b/packages/react/src/v1/hooks/useUserDisplay.ts index cf6653d..7eaa983 100644 --- a/packages/react/src/v1/hooks/useUserDisplay.ts +++ b/packages/react/src/v1/hooks/useUserDisplay.ts @@ -40,7 +40,6 @@ export function useUserDisplay(address: string): UserDisplayInfo { } const identity = await client.userIdentityService.getIdentity(address, {fresh: true}); - console.log({identity}) if (cancelled) return; @@ -71,7 +70,6 @@ export function useUserDisplay(address: string): UserDisplayInfo { const displayInfo: UserDisplayInfo = React.useMemo(() => { if (storeIdentity) { - console.log({storeIdentity}) return { ...storeIdentity, isLoading,