🐛Fix text in the upload queue

This commit is contained in:
Anton SHEPILOV
2024-07-22 14:12:12 +02:00
committed by ericlinagora
parent 6ce005f882
commit afb673f9e0
@@ -42,7 +42,7 @@ export default ({ pendingFilesState, visible }: PropsType) => {
const momentTimeRemaining = moment(new Date().getTime() + timeRemainingInMs).fromNow();
if (momentTimeRemaining !== 'Invalid date') {
return Languages.t('components.pending_file_list.estimation.end') + `Will end ${momentTimeRemaining}...`;
return Languages.t('components.pending_file_list.estimation.end') + ` ${momentTimeRemaining}...`;
} else {
return Languages.t('components.pending_file_list.estimation.approximations');
}