We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acb7f4c commit 872f80aCopy full SHA for 872f80a
ui/selectors/selectors.js
@@ -2041,21 +2041,6 @@ export const getConnectedSitesList = createDeepEqualSelector(
2041
},
2042
);
2043
2044
-export const getConnectedSnapsList = createDeepEqualSelector(
2045
- getSnapsList,
2046
- (snapsData) => {
2047
- const snapsList = {};
2048
-
2049
- Object.values(snapsData).forEach((snap) => {
2050
- if (!snapsList[snap.name]) {
2051
- snapsList[snap.name] = snap;
2052
- }
2053
- });
2054
2055
- return snapsList;
2056
- },
2057
-);
2058
2059
export const getMemoizedCurrentChainId = createDeepEqualSelector(
2060
getCurrentChainId,
2061
(chainId) => chainId,
0 commit comments