From 86279a1f5765443727d684cefda04e9a7fab181a Mon Sep 17 00:00:00 2001 From: noumantahir Date: Wed, 19 Oct 2022 14:06:03 +0500 Subject: [PATCH] removed intl --- src/screens/steem-connect/hiveSigner.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/screens/steem-connect/hiveSigner.js b/src/screens/steem-connect/hiveSigner.js index 1984d18a1..d56322c06 100644 --- a/src/screens/steem-connect/hiveSigner.js +++ b/src/screens/steem-connect/hiveSigner.js @@ -2,7 +2,6 @@ import React, { PureComponent } from 'react'; import { View, Alert, StatusBar } from 'react-native'; import { WebView } from 'react-native-webview'; import { connect } from 'react-redux'; -import { injectIntl } from 'react-intl'; import { loginWithSC2 } from '../../providers/hive/auth'; import { hsOptions } from '../../constants/hsOptions'; @@ -27,7 +26,7 @@ class HiveSigner extends PureComponent { _onNavigationStateChange = (event) => { let code; - const { dispatch, handleOnModalClose, intl, isPinCodeOpen, navigation } = this.props; + const { dispatch, handleOnModalClose, isPinCodeOpen, navigation } = this.props; const { isLoading } = this.state; if (event.url.indexOf('?code=') > -1) { this.webview.stopLoading();