@avalix/chroma 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/wallets/talisman.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -206,7 +206,7 @@ async function rejectTalismanTx(page) {
|
|
|
206
206
|
const context = page.__extensionContext;
|
|
207
207
|
const extensionId = page.__extensionId;
|
|
208
208
|
const extensionPopup = await findExtensionPopup(context, extensionId);
|
|
209
|
-
await extensionPopup.getByTestId("connection-reject-button").or(extensionPopup.getByRole("button", { name: "Cancel" })).click();
|
|
209
|
+
await extensionPopup.getByTestId("connection-reject-button").or(extensionPopup.getByRole("button", { name: "Cancel" })).or(extensionPopup.getByRole("button", { name: "Reject" })).click();
|
|
210
210
|
}
|
|
211
211
|
/* c8 ignore stop */
|
|
212
212
|
|
package/package.json
CHANGED
package/src/wallets/talisman.ts
CHANGED
|
@@ -244,6 +244,7 @@ export async function rejectTalismanTx(
|
|
|
244
244
|
|
|
245
245
|
const rejectButton = extensionPopup.getByTestId('connection-reject-button')
|
|
246
246
|
.or(extensionPopup.getByRole('button', { name: 'Cancel' }))
|
|
247
|
+
.or(extensionPopup.getByRole('button', { name: 'Reject' }))
|
|
247
248
|
|
|
248
249
|
await rejectButton.click()
|
|
249
250
|
}
|