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,