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

Dapps show multiple times in some cases #4843

Merged
merged 1 commit into from
Mar 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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