diff --git a/src/components/Phonetic/index.tsx b/src/components/Phonetic/index.tsx index 2a7b5d66..ff114c91 100644 --- a/src/components/Phonetic/index.tsx +++ b/src/components/Phonetic/index.tsx @@ -7,9 +7,9 @@ export type PhoneticProps = { const Phonetic: React.FC = ({ usphone, ukphone }) => { return ( -
+
{usphone.length > 1 && {`US: [${usphone}]`}} - {ukphone.length > 1 && {`UK:[${ukphone}]`}} + {ukphone.length > 1 && {`UK: [${ukphone}]`}}
) }