Skip to content

Commit 2aa739f

Browse files
committed
fix type
1 parent 014bd35 commit 2aa739f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/arb-token-bridge-ui/src/components/TransferPanel/TransferPanel.integration.helpers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ export async function expectTokenPanelContent({
431431
throw new Error(`Waiting for "${tokenExpectation.symbol}" row logo to resolve.`);
432432
}
433433

434-
if (!rowLogoSrc.includes(tokenExpectation.logoURI)) {
434+
if (tokenExpectation.logoURI && !rowLogoSrc.includes(tokenExpectation.logoURI)) {
435435
throw new Error(
436436
`Expected "${tokenExpectation.symbol}" row logo to contain "${tokenExpectation.logoURI}", got "${rowLogoSrc}".`,
437437
);

0 commit comments

Comments
 (0)