Skip to content

Commit

Permalink
chore: reduce debounce in AuctionBid
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Feb 14, 2025
1 parent bc7cc9d commit df517f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/aens/AuctionBid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default {
this.endsAt = endsAt;
this.highestBid = new BigNumber(highestBid).shiftedBy(-MAGNITUDE);
};
this.$watch(({ internalName }) => internalName, debounce(fetchDetails, 300));
this.$watch(({ internalName }) => internalName, debounce(fetchDetails, 200));
await fetchDetails(this.internalName);
},
methods: {
Expand Down

0 comments on commit df517f7

Please sign in to comment.