···2323import {InlineLinkText} from '#/components/Link'
2424import {Loader} from '#/components/Loader'
2525import * as Prompt from '#/components/Prompt'
2626+import {Text} from '#/components/Typography'
2627import {useSimpleVerificationState} from '#/components/verification'
27282829const DISPLAY_NAME_MAX_GRAPHEMES = 64
···329330 />
330331 </TextField.Root>
331332 {displayNameTooLong && (
332332- <TextField.SuffixText
333333+ <Text
333334 style={[
334335 a.text_sm,
335336 a.mt_xs,
336337 a.font_bold,
337338 {color: t.palette.negative_400},
338338- ]}
339339- label={_(msg`Display name is too long`)}>
340340- <Trans>
341341- Display name is too long.{' '}
342342- <Plural
343343- value={DISPLAY_NAME_MAX_GRAPHEMES}
344344- other="The maximum number of characters is #."
345345- />
346346- </Trans>
347347- </TextField.SuffixText>
339339+ ]}>
340340+ <Plural
341341+ value={DISPLAY_NAME_MAX_GRAPHEMES}
342342+ other="Display name is too long. The maximum number of characters is #."
343343+ />
344344+ </Text>
348345 )}
349346 </View>
350347···379376 />
380377 </TextField.Root>
381378 {descriptionTooLong && (
382382- <TextField.SuffixText
379379+ <Text
383380 style={[
384381 a.text_sm,
385382 a.mt_xs,
386383 a.font_bold,
387384 {color: t.palette.negative_400},
388388- ]}
389389- label={_(msg`Description is too long`)}>
390390- <Trans>
391391- Description is too long.{' '}
392392- <Plural
393393- value={DESCRIPTION_MAX_GRAPHEMES}
394394- other="The maximum number of characters is #."
395395- />
396396- </Trans>
397397- </TextField.SuffixText>
385385+ ]}>
386386+ <Plural
387387+ value={DESCRIPTION_MAX_GRAPHEMES}
388388+ other="Description is too long. The maximum number of characters is #."
389389+ />
390390+ </Text>
398391 )}
399392 </View>
400393 </View>