diff --git a/wallets/keplr/src/pages/HomePage/actions/getWalletAddress.ts b/wallets/keplr/src/pages/HomePage/actions/getWalletAddress.ts index ca78abf16..107c6a6fa 100644 --- a/wallets/keplr/src/pages/HomePage/actions/getWalletAddress.ts +++ b/wallets/keplr/src/pages/HomePage/actions/getWalletAddress.ts @@ -7,6 +7,6 @@ export const getWalletAddress = async (page: Page, wallet: string) => { await page.getByText(homePageElements.copyAddress).click() const chain = await page.waitForSelector(homePageElements.walletSelectors(wallet)) await chain.click() - const address = clipboardy.readSync() + const address = await clipboardy.readSync() return address }