From d3ba6cede0c311751f89e20e5be1adce323e81fa Mon Sep 17 00:00:00 2001 From: Derek Date: Wed, 30 Oct 2024 23:26:01 +0800 Subject: [PATCH] feat: improve error messages --- packages/appkit-utils/src/ErrorUtil.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/appkit-utils/src/ErrorUtil.ts b/packages/appkit-utils/src/ErrorUtil.ts index 92c564307f..a12fa06320 100644 --- a/packages/appkit-utils/src/ErrorUtil.ts +++ b/packages/appkit-utils/src/ErrorUtil.ts @@ -8,18 +8,18 @@ export const ErrorUtil = { longMessage: () => `Origin ${ isSafe() ? window.origin : 'unknown' - } not found on Allowlist - update configuration` + } not found on Allowlist - update configuration on cloud.reown.com` }, INVALID_APP_CONFIGURATION_SOCIALS: { shortMessage: 'Invalid App Configuration', longMessage: () => `Origin ${ isSafe() ? window.origin : 'unknown' - } not found on Allowlist - update configuration to enable social login` + } not found on Allowlist - update configuration on cloud.reown.com to enable social login` }, PROJECT_ID_NOT_CONFIGURED: { shortMessage: 'Project ID Not Configured', - longMessage: 'Project ID Not Configured - update configuration' + longMessage: 'Project ID Not Configured - update configuration on cloud.reown.com' } } }