refactor: remove --highlight

This commit is contained in:
codytseng
2025-04-08 17:27:51 +08:00
parent 3be4a93e6f
commit c5645f78e0
11 changed files with 12 additions and 19 deletions

View File

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