From b622f4c698fe4d22e6f35be39b7e91199d9eceec Mon Sep 17 00:00:00 2001 From: Claire Date: Mon, 5 Jan 2026 15:24:59 +0100 Subject: [PATCH] Fix custom emojis not being rendered in profile fields (#37365) --- app/javascript/mastodon/components/account_fields.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/javascript/mastodon/components/account_fields.tsx b/app/javascript/mastodon/components/account_fields.tsx index dd17b89d865..9ddbfd058f9 100644 --- a/app/javascript/mastodon/components/account_fields.tsx +++ b/app/javascript/mastodon/components/account_fields.tsx @@ -6,7 +6,6 @@ import CheckIcon from '@/material-icons/400-24px/check.svg?react'; import { Icon } from 'mastodon/components/icon'; import type { Account } from 'mastodon/models/account'; -import { CustomEmojiProvider } from './emoji/context'; import { EmojiHTML } from './emoji/html'; import { useElementHandledLink } from './status/handled_link'; @@ -22,12 +21,13 @@ export const AccountFields: React.FC> = ({ } return ( - + <> {fields.map((pair, i) => (
@@ -52,12 +52,13 @@ export const AccountFields: React.FC> = ({
))} -
+ ); };