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

View File

@ -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",