summaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@codeispoetry.ru>2017-03-20 17:13:37 +0000
committerAndrej Mihajlov <and@codeispoetry.ru>2017-03-20 17:13:37 +0000
commitc806fb42875d779f73340c6d3e367a6184e81877 (patch)
tree053df8ed077932f07b58b38ff6d58964c70b4f8f /app
parent57db5ee737e0801caed69d378030214653a79edd (diff)
downloadmullvadvpn-c806fb42875d779f73340c6d3e367a6184e81877.tar.xz
mullvadvpn-c806fb42875d779f73340c6d3e367a6184e81877.zip
Fix lint issue
Diffstat (limited to 'app')
-rw-r--r--app/components/Connect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/Connect.js b/app/components/Connect.js
index 429b617526..a460111ae9 100644
--- a/app/components/Connect.js
+++ b/app/components/Connect.js
@@ -168,7 +168,7 @@ export default class Connect extends Component {
<div className={ this.ipAddressClass() } onClick={ ::this.onIPAddressClick }>
<If condition={ this.state.showCopyIPMessage }>
- <Then><span>{ "IP copied to clipboard!" }</span></Then>
+ <Then><span>{ 'IP copied to clipboard!' }</span></Then>
<Else><span>{ this.props.connect.clientIp }</span></Else>
</If>
</div>