diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.jsx index ac79a5e836..4fa8ab1ee7 100644 --- a/awx/ui_next/src/components/AppContainer/AppContainer.jsx +++ b/awx/ui_next/src/components/AppContainer/AppContainer.jsx @@ -237,9 +237,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.` + )} );