Skip to content

Commit

Permalink
attempt to fix pool charts? (#738)
Browse files Browse the repository at this point in the history
ansaf: using admin to merge hotfix
  • Loading branch information
markusbkoch authored Aug 25, 2021
1 parent 5563390 commit 04914ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@balancer-labs/frontend-v2",
"version": "1.14.4",
"version": "1.14.5",
"engines": {
"node": "14.x",
"npm": ">=7"
Expand Down
2 changes: 1 addition & 1 deletion src/services/coingecko/api/price.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export class PriceService {
if (!(timestamp in prices)) {
prices[timestamp] = [];
}
prices[timestamp].unshift(price);
prices[timestamp].push(price);
}
}
return prices;
Expand Down

3 comments on commit 04914ec

@vercel
Copy link

@vercel vercel bot commented on 04914ec Aug 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

app – ./

pm2.vercel.app
app-balancer.vercel.app
app-git-master-balancer.vercel.app
app.balancer.fi

@vercel
Copy link

@vercel vercel bot commented on 04914ec Aug 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 04914ec Aug 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.