import { LumeWindow, useProfile } from "@lume/system"; import { displayNpub } from "@lume/utils"; export function MentionUser({ pubkey }: { pubkey: string }) { const { isLoading, isError, profile } = useProfile(pubkey); return ( ); }