We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1c57dc commit cff9687Copy full SHA for cff9687
src/services/AppService.js
@@ -48,7 +48,10 @@ export default class AppService {
48
url:'',
49
};
50
51
- const dappData = await AppService.getFlatApps();
+ const dappData = await AppService.getFlatApps().then(res => res.reduce((acc,x) => {
52
+ acc[x.applink] = x;
53
+ return acc;
54
+ }, {}));
55
let found = dappData[origin];
56
57
if(!found){
0 commit comments