From 4cb0c6aba872a40d490ce5fd0596eba13046793a Mon Sep 17 00:00:00 2001 From: vantezzen Date: Wed, 4 Sep 2019 15:35:31 +0200 Subject: Fix lint --- src/containers/settings/AccountScreen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/containers/settings/AccountScreen.js') diff --git a/src/containers/settings/AccountScreen.js b/src/containers/settings/AccountScreen.js index 17c0613b7..fd3317301 100644 --- a/src/containers/settings/AccountScreen.js +++ b/src/containers/settings/AccountScreen.js @@ -29,7 +29,7 @@ export default @inject('stores', 'actions') @observer class AccountScreen extend const api = stores.settings.all.app.server; let url; - if (api == 'https://api.franzinfra.com') { + if (api === 'https://api.franzinfra.com') { url = `${WEBSITE}${route}?authToken=${stores.user.authToken}&utm_source=app&utm_medium=account_dashboard`; } else { url = `${api}${route}`; -- cgit v1.2.3-54-g00ecf