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 cb92d4b commit e68df53Copy full SHA for e68df53
src/modules/helloWorld/GrantAccess.vue
@@ -156,7 +156,10 @@ const grantAccess = async () => {
156
grantedAccess.value = grantedAccessResult; // Store the result in the reactive variable
157
} catch (error) {
158
grantError.value = error.message;
159
- console.error('Error granting access. Did you enter a correct app address?', error);
+ console.error(
160
+ 'Error granting access. Did you enter a correct app address?',
161
+ error
162
+ );
163
} finally {
164
isLoadingGrant.value = false;
165
}
0 commit comments