-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(staking): implement a bunch of staking app fixes #1956
Conversation
cprussin
commented
Sep 23, 2024
- Improve layout of initial landing page after connecting wallet
- Show options to reverse sort on mobile
- Fix paginator
- Fix sort by pool utilization
- Clean up mid-screen sizes (less dead empty space)
- Use a red instead of fuchsia for over utilized pools
- Clean up middleware implementation
- Don't apply middleware to static files
@cprussin is attempting to deploy a commit to the pyth-web Team on Vercel. A member of the Team first needs to authorize it. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
return 0; | ||
} else if (a.poolCapacity === 0n) { | ||
return 1; | ||
} else if (b.poolCapacity === 9n) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be 0n
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh whoops typo, good catch thank you
- Improve layout of initial landing page after connecting wallet - Show options to reverse sort on mobile - Fix paginator - Fix sort by pool utilization - Clean up mid-screen sizes (less dead empty space) - Use a red instead of fuchsia for over utilized pools - Clean up middleware implementation - Don't apply middleware to static files
35d5148
to
57ec96f
Compare