diff --git a/app/(app)/(profile)/[npub]/_components/Feed.tsx b/app/(app)/(profile)/[npub]/_components/Feed.tsx index 1e752b6..b16d83f 100644 --- a/app/(app)/(profile)/[npub]/_components/Feed.tsx +++ b/app/(app)/(profile)/[npub]/_components/Feed.tsx @@ -1,23 +1,14 @@ import Feed from "@/containers/Feed"; import Spinner from "@/components/spinner"; +import { NDKKind } from "@nostr-dev-kit/ndk"; -export default function ProfileFeed({ - pubkey, - alt, -}: { - pubkey: string; - alt?: string; -}) { - const authors = [pubkey]; - if (alt) { - authors.push(alt); - } +export default function ProfileFeed({ pubkey }: { pubkey: string }) { return (