Skip to content

Commit 0eb8ead

Browse files
author
Enrique A
committed
Update to 2.0.0-beta.9
1 parent a9663ed commit 0eb8ead

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sdk/kit.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,11 +198,11 @@ export class StellarWalletsKit {
198198
name: mod.productName,
199199
type: mod.moduleType,
200200
icon: mod.productIcon,
201-
isAvailable: await Promise.race([timer, mod.isAvailable()]),
201+
isAvailable: await Promise.race([timer, mod.isAvailable()]).catch((): boolean => false),
202202
isPlatformWrapper: await Promise.race([
203203
timer,
204204
mod.isPlatformWrapper ? mod.isPlatformWrapper() : Promise.resolve(false),
205-
]),
205+
]).catch((): boolean => false),
206206
url: mod.productUrl,
207207
} satisfies ISupportedWallet;
208208
}),

0 commit comments

Comments
 (0)