{user?.userType === UserType.PLEX ? (
{intl.formatMessage(messages.plexuser)}
) : user?.userType === UserType.LOCAL ? (
{intl.formatMessage(messages.localuser)}
) : publicRuntimeConfig.JELLYFIN_TYPE == 'emby' ? (
{intl.formatMessage(messages.mediaServerUser, {
mediaServerName: 'Emby',
})}
) : user?.userType === UserType.JELLYFIN ? (
{intl.formatMessage(messages.mediaServerUser, {
mediaServerName: 'Jellyfin',
})}
) : null}