···11import React from 'react'
22import {AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api'
33import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs'
44-import {msg} from '@lingui/macro'
44+import {msg, plural} from '@lingui/macro'
5566import {STARTER_PACK_MAX_SIZE} from '#/lib/constants'
77import {useSession} from '#/state/session'
···7373 case 'AddProfile':
7474 if (state.profiles.length > STARTER_PACK_MAX_SIZE) {
7575 Toast.show(
7676- msg`You may only add up to ${STARTER_PACK_MAX_SIZE} profiles`
7777- .message ?? '',
7676+ msg`You may only add up to ${plural(STARTER_PACK_MAX_SIZE, {
7777+ other: `${STARTER_PACK_MAX_SIZE} profiles`,
7878+ })}`.message ?? '',
7879 'info',
7980 )
8081 } else {