Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Uniq array of ids (#4843)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngotchac authored and jacogr committed Mar 9, 2017
1 parent b196635 commit bd00256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/util/dapps.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export function fetchRegistryAppIds () {
return (new BigNumber(appId)).gt(0) && !builtinApps.find((app) => app.id === appId);
});

return appIds;
return uniq(appIds);
})
.catch((error) => {
console.warn('DappsStore:fetchRegistryAppIds', error);
Expand Down

0 comments on commit bd00256

Please sign in to comment.