fix: added envWarning.production & russian translation for it

pull/167/head
Денис Кочетков 2025-01-23 16:16:49 +03:00
parent b8718c6647
commit d42938dcae
1 changed files with 3 additions and 3 deletions

View File

@ -34,9 +34,9 @@ const ConfigPage = () => {
{appEnv === 'production' && ( {appEnv === 'production' && (
<Box paddingBottom={4}> <Box paddingBottom={4}>
<Alert variant="danger"> <Alert variant="danger">
<Typography variant="omega" fontWeight="bold">{formatMessage({ id: 'envWarning.production.heading' })}</Typography><br /> <Typography variant="omega" fontWeight="bold">{formatMessage({ id: 'config-sync.envWarning.production.heading' })}</Typography><br />
{formatMessage({ id: 'envWarning.production.message_1' })}<br /> {formatMessage({ id: 'config-sync.envWarning.production.message_1' })}<br />
{formatMessage({ id: 'envWarning.production.message_2' })} {formatMessage({ id: 'config-sync.envWarning.production.message_2' })}
</Alert> </Alert>
</Box> </Box>
)} )}