Skip to content

Commit

Permalink
remove operator from filter function
Browse files Browse the repository at this point in the history
  • Loading branch information
ayumitk committed Dec 20, 2023
1 parent 64ed4be commit 696e13d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/staking-v3/components/Dapps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default defineComponent({
dapp.basic.name.toLowerCase().includes(value) ||
dapp.basic.shortDescription.toLowerCase().includes(value)
);
return result.length > 0 ? result : [];
return result;
});

return { filteredDapps, getDappTier, navigateDappPage };
Expand Down

0 comments on commit 696e13d

Please sign in to comment.