Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

fix: bad fetch when keplr not available #169

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion web/src/api/rpc/beta2/certificates.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ export const loadActiveCertificateAuto = async () => {
const walletId = accounts?.[0].address;

if (!walletId) {
throw new Error('Unable to fetch active certificate. Unable to determine wallet ID.');
console.log('Unable to fetch active certificate. Unable to determine wallet ID.');

return { $type: 'Invalid Certificate' } as NoCertificate;
}

return loadActiveCertificate(walletId);
Expand Down
Loading