The translation of credentialsHoldTime on the plan page is broken in the latest Metadeploy.
Expected Text:
If no action is performed for 10 minutes, you will be automatically logged out and will need to log in again.
Actual Text:
If no action is performed for minutes, you will be automatically logged out and will need to log in again. minutes, you will be automatically logged out and will need to log in again.
This is caused by {' '} being removed from src/js/components/plans/userInfo.tsx in the translation block. Putting it back fixes it.
The translation of credentialsHoldTime on the plan page is broken in the latest Metadeploy.
Expected Text:
If no action is performed for 10 minutes, you will be automatically logged out and will need to log in again.Actual Text:
If no action is performed for minutes, you will be automatically logged out and will need to log in again. minutes, you will be automatically logged out and will need to log in again.This is caused by
{' '}being removed fromsrc/js/components/plans/userInfo.tsxin the translation block. Putting it back fixes it.