diff --git a/web/features/deployments/components/deploy-drawer/select.tsx b/web/features/deployments/components/deploy-drawer/select.tsx
index 2abc834c73..aeafaf08a3 100644
--- a/web/features/deployments/components/deploy-drawer/select.tsx
+++ b/web/features/deployments/components/deploy-drawer/select.tsx
@@ -4,7 +4,6 @@ import type { FC } from 'react'
import type { EnvironmentOption } from '@/contract/console/deployments'
import { cn } from '@langgenius/dify-ui/cn'
import { Select, SelectContent, SelectItem, SelectItemIndicator, SelectItemText, SelectTrigger } from '@langgenius/dify-ui/select'
-import { useMemo } from 'react'
import { useTranslation } from 'react-i18next'
import { environmentHealth, environmentMode, environmentName } from '../../utils'
import { HealthBadge, ModeBadge } from '../status-badge'
@@ -36,10 +35,7 @@ type SelectProps = {
export const DeploymentSelect: FC
= ({ value, onChange, options, placeholder }) => {
const { t } = useTranslation('deployments')
- const selectedOption = useMemo(
- () => options.find(option => option.value === value),
- [options, value],
- )
+ const selectedOption = options.find(option => option.value === value)
return (