We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9663ed commit 0eb8eadCopy full SHA for 0eb8ead
src/sdk/kit.ts
@@ -198,11 +198,11 @@ export class StellarWalletsKit {
198
name: mod.productName,
199
type: mod.moduleType,
200
icon: mod.productIcon,
201
- isAvailable: await Promise.race([timer, mod.isAvailable()]),
+ isAvailable: await Promise.race([timer, mod.isAvailable()]).catch((): boolean => false),
202
isPlatformWrapper: await Promise.race([
203
timer,
204
mod.isPlatformWrapper ? mod.isPlatformWrapper() : Promise.resolve(false),
205
- ]),
+ ]).catch((): boolean => false),
206
url: mod.productUrl,
207
} satisfies ISupportedWallet;
208
}),
0 commit comments