Skip to content

Commit 558949c

Browse files
committed
rebased
1 parent 80ea306 commit 558949c

File tree

3 files changed

+116
-129
lines changed

3 files changed

+116
-129
lines changed

examples/with-sdk-js/e2e/auth-component.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ test.describe("auth with wallet", async () => {
140140
await page
141141
.getByTestId(walletKitSelectors.authComponent.walletAuthButton)
142142
.click();
143-
await expect(page.getByText("Select wallet provider")).toBeVisible();
143+
await expect(
144+
page.getByText(/Select wallet provider|Select chain/),
145+
).toBeVisible();
144146
});
145147
});

packages/react-wallet-kit/src/components/auth/Wallet.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ function QRCodeDisplay(props: QRCodeDisplayProps) {
438438

439439
return (
440440
<div className="relative inline-block">
441+
{/* @ts-expect-error: qrcode.react uses a different React type version */}
441442
<QRCode
442443
className={clsx(
443444
"block border border-modal-background-dark/20 dark:border-modal-background-light/20",

0 commit comments

Comments
 (0)