Skip to content

Commit

Permalink
fix: query fee dash variable
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenttaglia committed Oct 19, 2024
1 parent 4727c7e commit 2c3f5e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/subgraphs.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ export const useSubgraphsStore = defineStore({
return queryFeeDatas;
},
getQueryFeeDash: (state) => {
return queryFeeStore.qosData.filter((e) => state.getSubgraphsDict[e.subgraphDeployment.id]).map((e) => Object.assign({}, e, state.getSubgraphsDict[e.subgraphDeployment.id] || {} ));
return queryFeeStore.queryFeeData.filter((e) => state.getSubgraphsDict[e.subgraphDeployment.id]).map((e) => Object.assign({}, e, state.getSubgraphsDict[e.subgraphDeployment.id] || {} ));
},
getProportions: (state) => {
let proportions = [];
Expand Down

0 comments on commit 2c3f5e1

Please sign in to comment.