diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.jsx index 0e0b726cb4a8..59e4861cfbf8 100644 --- a/awx/ui_next/src/components/AppContainer/AppContainer.jsx +++ b/awx/ui_next/src/components/AppContainer/AppContainer.jsx @@ -241,9 +241,11 @@ function AppContainer({ i18n, navRouteConfig = [], children }) { , ]} > - {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.` + )} );