Skip to content

Commit 95d7225

Browse files
committed
fix: improve error message
1 parent 9e35774 commit 95d7225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/helloWorld/GrantAccess.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ const grantAccess = async () => {
156156
grantedAccess.value = grantedAccessResult; // Store the result in the reactive variable
157157
} catch (error) {
158158
grantError.value = error.message;
159-
console.error('Error granting access:', error);
159+
console.error('Error granting access. Did you enter a correct app address?', error);
160160
} finally {
161161
isLoadingGrant.value = false;
162162
}

0 commit comments

Comments
 (0)