Skip to content

Commit

Permalink
undo change to page that used string comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
eli-d committed Jan 13, 2025
1 parent 60d754e commit 250a164
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions web/src/app/stake/pool/withdraw-liquidity/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ export default function WithdrawLiquidity() {
const router = useRouter();
const params = useSearchParams();

const positionId_ = params.get("positionId");
const positionId = positionId_ ? Number(positionId_) : undefined;
const positionId = params.get("positionId");

const { address, chainId } = useAccount();
const expectedChainId = useChainId();
Expand Down

0 comments on commit 250a164

Please sign in to comment.