Skip to content
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

Changed pools warning message #11386

Merged
merged 1 commit into from
Mar 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions packages/page-staking/src/MarkPoolsWarning.tsx
Original file line number Diff line number Diff line change
@@ -15,21 +15,22 @@ function MarkPoolsWarning ({ children, className = '', withIcon = true }: Props)
return (
<StyledArticle className={`${className} mark warning`}>
{withIcon && <Icon icon='exclamation-triangle' />}
<strong>Nomination Pools are evolving!</strong>
<strong>Nomination Pools have evolved!</strong>
<br />
<br />
Soon you will be able to participate in a pool and in OpenGov with your pooled funds!
You can now participate in both a nomination pool and OpenGov using your pooled funds!
<br />
<br />
You do not need to do anything, unless you are participating in a pool and also staking solo from the same account.
However, if you&apos;re staking solo from the same account while being part of a nomination pool, you might encounter the <strong>NotMigrated</strong> error.
<br />
In this case, please check
To resolve this, please refer to{' '}
<a
href='https://support.polkadot.network/support/solutions/articles/65000188140-changes-for-nomination-pool-members-and-opengov-participation'
href='https://support.polkadot.network/support/solutions/articles/65000188140'
rel='noreferrer'
target='_blank'
> this article </a>
on the actions you need to take as soon as possible.
>
this article
</a> for the necessary steps to take.
{children}
</StyledArticle>
);