-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
features/rewards/components/errorBlocks/ErrorUnprocessable.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import Link from 'next/link'; | ||
import { ErrorBlockBase } from './ErrorBlockBase'; | ||
|
||
export const ErrorUnprocessable = () => ( | ||
<ErrorBlockBase | ||
textProps={{ color: 'error' }} | ||
text={ | ||
<> | ||
This address has too many stETH transfers. For querying such addresses | ||
use{' '} | ||
<Link | ||
href={ | ||
'https://github.com/lidofinance/lido-ethereum-sdk/blob/main/packages/sdk/README.md#rewards' | ||
} | ||
> | ||
Rewards Module from Lido Ethereum SDK | ||
</Link>{' '} | ||
and fetch rewards from subgraph directly | ||
</> | ||
} | ||
/> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters