fix: 🐛

This commit is contained in:
codytseng
2025-01-23 12:17:04 +08:00
parent b15ce2c153
commit 0f2f82b3ac
3 changed files with 21 additions and 5 deletions

View File

@@ -2,7 +2,14 @@ import Username from '../Username'
import { TEmbeddedRenderer } from './types'
export function EmbeddedMention({ userId }: { userId: string }) {
return <Username userId={userId} showAt className="text-highlight font-normal inline-block" />
return (
<Username
userId={userId}
showAt
className="text-highlight font-normal inline-block"
withoutSkeleton
/>
)
}
export const embeddedNostrNpubRenderer: TEmbeddedRenderer = {