From 29c06ef627a4d23cff368018d76b72c653176f9f Mon Sep 17 00:00:00 2001 From: Pranav C Date: Fri, 21 Jun 2024 07:30:15 +0000 Subject: [PATCH] fix: skip smtp check in cloud --- packages/nc-gui/components/smartsheet/Form.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/smartsheet/Form.vue b/packages/nc-gui/components/smartsheet/Form.vue index 16c00d6191..ac60e4e635 100644 --- a/packages/nc-gui/components/smartsheet/Form.vue +++ b/packages/nc-gui/components/smartsheet/Form.vue @@ -361,7 +361,7 @@ async function handleAddOrRemoveAllColumns(value: T) { } async function checkSMTPStatus() { - if (emailMe.value) { + if (emailMe.value && !isEeUI) { const emailPluginActive = await $api.plugin.status('SMTP') if (!emailPluginActive) { emailMe.value = false