From d3955fed264b7a9bcf1a8c14555c3d682c0e96bc Mon Sep 17 00:00:00 2001 From: kyranjamie Date: Mon, 23 Dec 2024 14:42:30 +0000 Subject: [PATCH] fix: styles for inscription options --- .../collectibles/components/bitcoin/inscription.tsx | 8 +++++++- .../bitcoin/ordinals/inscriptions/inscriptions.query.ts | 5 ++++- .../store/accounts/blockchain/bitcoin/bitcoin.hooks.ts | 8 +++++--- tests/specs/ledger/ledger.spec.ts | 5 ++++- 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/app/features/collectibles/components/bitcoin/inscription.tsx b/src/app/features/collectibles/components/bitcoin/inscription.tsx index 5ced101c31..e09217acb1 100644 --- a/src/app/features/collectibles/components/bitcoin/inscription.tsx +++ b/src/app/features/collectibles/components/bitcoin/inscription.tsx @@ -123,7 +123,13 @@ export function Inscription({ inscription }: InscriptionProps) { {content} {isHovered && ( - + isString(xpub)) as string[]; } diff --git a/tests/specs/ledger/ledger.spec.ts b/tests/specs/ledger/ledger.spec.ts index f74143234d..1e4936de1c 100644 --- a/tests/specs/ledger/ledger.spec.ts +++ b/tests/specs/ledger/ledger.spec.ts @@ -50,7 +50,10 @@ test.describe('App with Ledger', () => { await homePage.page.getByTestId(SettingsSelectors.CurrentAccountDisplayName).click(); - test.expect(async () => await test.expect(requestPromise).rejects.toThrowError()); + await test + .expect(async () => await test.expect(requestPromise).rejects.toThrowError()) + .toPass() + .catch(); }); }