Skip to content

Commit

Permalink
fix nothing to claim state links
Browse files Browse the repository at this point in the history
  • Loading branch information
Ridel1e committed Feb 15, 2023
1 parent da4d39c commit d68d47b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ergo-dex-frontend",
"version": "3.3.0",
"version": "3.3.1",
"private": false,
"scripts": {
"start": "HTTPS=true react-app-rewired start",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export const NothingToClaimState: FC<NothingToClaimStateProps> = ({

const handleAddLiquidityButton = () => {
if (!matchLiquidityPage) {
navigate(`${network.name}/liquidity`);
navigate(
`${network.name}/liquidity/f40afb6f877c40a30c8637dd5362227285738174151ce66d6684bc1b727ab6cf`,
);
}
close();
};
Expand All @@ -48,7 +50,7 @@ export const NothingToClaimState: FC<NothingToClaimStateProps> = ({
</Typography.Body>
</Flex.Item>
<Flex.Item marginBottom={6}>
<Button type="link" href="https://spectrum.fi/spf" target="_blank">
<Button type="link" href="https://spectrum.fi/token" target="_blank">
<Trans>Read more about SPF</Trans>
</Button>
</Flex.Item>
Expand Down

0 comments on commit d68d47b

Please sign in to comment.