diff --git a/src/components/RequestCard/index.tsx b/src/components/RequestCard/index.tsx index 42255c49a..858e8e465 100644 --- a/src/components/RequestCard/index.tsx +++ b/src/components/RequestCard/index.tsx @@ -17,7 +17,6 @@ import globalMessages from '../../i18n/globalMessages'; import StatusBadge from '../StatusBadge'; const messages = defineMessages({ - requestedby: 'Requested by {username}', seasons: 'Seasons', all: 'All', }); @@ -106,10 +105,15 @@ const RequestCard: React.FC = ({ request }) => { {isMovie(title) ? title.title : title.name} -
- {intl.formatMessage(messages.requestedby, { - username: requestData.requestedBy.displayName, - })} +
+ + + {requestData.requestedBy.displayName} +
{requestData.media.status && (
diff --git a/src/i18n/locale/en.json b/src/i18n/locale/en.json index 5c328f5a8..582c1bc19 100644 --- a/src/i18n/locale/en.json +++ b/src/i18n/locale/en.json @@ -143,7 +143,6 @@ "components.RequestButton.viewrequest": "View Request", "components.RequestButton.viewrequest4k": "View 4K Request", "components.RequestCard.all": "All", - "components.RequestCard.requestedby": "Requested by {username}", "components.RequestCard.seasons": "Seasons", "components.RequestList.RequestItem.failedretry": "Something went wrong while retrying the request.", "components.RequestList.RequestItem.notavailable": "N/A",