Fix translation issue (#1378)

This commit is contained in:
Daniel Ternyak 2018-03-23 11:58:33 -05:00 committed by GitHub
parent bcff51d453
commit b2c2d12a14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 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>