Merge pull request #1380 from MyCryptoHQ/develop

Release Beta 0.6.1
This commit is contained in:
Daniel Ternyak 2018-03-23 12:09:48 -05:00 committed by GitHub
commit 873d1e6385
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import './PreFooter.scss'; import './PreFooter.scss';
import translate from 'translations'; import translate, { translateRaw } from 'translations';
interface Props { interface Props {
openModal(): void; openModal(): void;
@ -12,7 +12,7 @@ const PreFooter: React.SFC<Props> = ({ openModal }) => {
<div className="container"> <div className="container">
<p> <p>
{translate('PREFOOTER_WARNING')}{' '} {translate('PREFOOTER_WARNING')}{' '}
<a onClick={openModal}>{translate('PREFOOTER_SECURITY_WARNING')}</a> <a onClick={openModal}>{translateRaw('PREFOOTER_SECURITY_WARNING')}</a>
</p> </p>
</div> </div>
</section> </section>

View File

@ -1,7 +1,7 @@
{ {
"name": "MyCrypto", "name": "MyCrypto",
"author": "MyCryptoHQ", "author": "MyCryptoHQ",
"version": "0.6.0", "version": "0.6.1",
"main": "main.js", "main": "main.js",
"description": "MyCrypto web and electron app", "description": "MyCrypto web and electron app",
"repository": "https://github.com/MyCryptoHQ/MyCrypto", "repository": "https://github.com/MyCryptoHQ/MyCrypto",