diff --git a/.gitignore b/.gitignore
index 9195d741f8..7c5f4851c9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -202,3 +202,6 @@ api/.vscode
# plugin migrate
plugins.jsonl
+
+# mise
+mise.toml
diff --git a/web/app/components/plugins/plugin-page/empty/index.tsx b/web/app/components/plugins/plugin-page/empty/index.tsx
index 3263f6a0c3..e66d476fec 100644
--- a/web/app/components/plugins/plugin-page/empty/index.tsx
+++ b/web/app/components/plugins/plugin-page/empty/index.tsx
@@ -71,7 +71,7 @@ const Empty = () => {
{[
...(
- (enable_marketplace || true)
+ (enable_marketplace && true)
? [{ icon: MagicBox, text: t('plugin.list.source.marketplace'), action: 'marketplace' }]
: []
),
diff --git a/web/app/components/plugins/plugin-page/install-plugin-dropdown.tsx b/web/app/components/plugins/plugin-page/install-plugin-dropdown.tsx
index 4c2d543e14..fde64e7227 100644
--- a/web/app/components/plugins/plugin-page/install-plugin-dropdown.tsx
+++ b/web/app/components/plugins/plugin-page/install-plugin-dropdown.tsx
@@ -85,7 +85,7 @@ const InstallPluginDropdown = ({
{[
...(
- (enable_marketplace || true)
+ (enable_marketplace && true)
? [{ icon: MagicBox, text: t('plugin.source.marketplace'), action: 'marketplace' }]
: []
),