diff --git a/common/components/Footer/PreFooter.tsx b/common/components/Footer/PreFooter.tsx index b4baff9c..f9ece086 100644 --- a/common/components/Footer/PreFooter.tsx +++ b/common/components/Footer/PreFooter.tsx @@ -1,6 +1,6 @@ import React from 'react'; import './PreFooter.scss'; -import translate from 'translations'; +import translate, { translateRaw } from 'translations'; interface Props { openModal(): void; @@ -12,7 +12,7 @@ const PreFooter: React.SFC = ({ openModal }) => {

{translate('PREFOOTER_WARNING')}{' '} - {translate('PREFOOTER_SECURITY_WARNING')} + {translateRaw('PREFOOTER_SECURITY_WARNING')}

diff --git a/package.json b/package.json index 4597d960..89a8b08d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "MyCrypto", "author": "MyCryptoHQ", - "version": "0.6.0", + "version": "0.6.1", "main": "main.js", "description": "MyCrypto web and electron app", "repository": "https://github.com/MyCryptoHQ/MyCrypto",