-
Notifications
You must be signed in to change notification settings - Fork 2
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 invalid pools page loading #61
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -51,7 +51,9 @@ export const PositionTitle: FC<{ | |||
display="flex" | |||
alignItems="center" | |||
_hover={{ cursor: 'pointer' }} | |||
onClick={() => navigate(`/pools/${network?.id}/${poolId}`)} | |||
onClick={() => |
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.
we need to send people to the pool. not just ignore clicks.
f0fe26e
to
5147fdc
Compare
const params = useParams(); | ||
|
||
const { network: connectedNetwork } = useNetwork(); | ||
const networkId = params.networkId ? Number(params.networkId) : connectedNetwork?.id; |
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.
455074f
to
a7d7871
Compare
a7d7871
to
36f8220
Compare
a92676a
to
1a8cba2
Compare
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. Thanks for integrating Codecov - We've got you covered ☂️ |
No description provided.