Unchunkify session warning string

This commit is contained in:
Jake McDermott 2020-09-29 15:29:49 -04:00
parent aa048049ea
commit 997200dd19
No known key found for this signature in database
GPG Key ID: 0E56ED990CDFCB4F

View File

@ -237,9 +237,11 @@ function AppContainer({ i18n, navRouteConfig = [], children }) {
</Button>,
]}
>
{i18n._(t`You will be logged out in`)}{' '}
{Number(Math.floor(timeRemaining / 1000))}{' '}
{i18n._(t`seconds due to inactivity.`)}
{i18n._(
t`You will be logged out in ${Number(
Math.floor(timeRemaining / 1000)
)} seconds due to inactivity.`
)}
</AlertModal>
</>
);