Skip to content

Commit

Permalink
🐛Fix text in the upload queue
Browse files Browse the repository at this point in the history
  • Loading branch information
shepilov authored and ericlinagora committed Jul 23, 2024
1 parent 6ce005f commit afb673f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit afb673f

Please sign in to comment.