diff options
| author | Haishan <[email protected]> | 2018-12-23 15:20:17 +0800 |
|---|---|---|
| committer | Haishan <[email protected]> | 2018-12-23 15:20:17 +0800 |
| commit | 852c91b44f9d0f318e2a8e5cbb6ae6ba7ece546a (patch) | |
| tree | 2add61c72a400794497a1880ad48fdd887d6ff85 /src/components/ProxyGroup.js | |
| parent | a05a34e140bcda098187bd55cfffcf7ede2f6d1d (diff) | |
fix: remove built-in proxy type filtering
closes #4
Diffstat (limited to 'src/components/ProxyGroup.js')
| -rw-r--r-- | src/components/ProxyGroup.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ProxyGroup.js b/src/components/ProxyGroup.js index 91b9717..e54a23a 100644 --- a/src/components/ProxyGroup.js +++ b/src/components/ProxyGroup.js @@ -6,10 +6,10 @@ import Proxy from 'c/Proxy'; import s0 from './ProxyGroup.module.scss'; -import { getUserProxies, switchProxy } from 'd/proxies'; +import { getProxies, switchProxy } from 'd/proxies'; const mapStateToProps = s => ({ - proxies: getUserProxies(s) + proxies: getProxies(s) }); // should move this to sth like constants.js |
