diff --git a/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx b/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx
index d5a426f50..3732e5092 100644
--- a/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx
+++ b/components/dashboard/application/advanced/cluster/show-cluster-settings.tsx
@@ -80,7 +80,7 @@ export const ShowClusterSettings = ({ applicationId }: Props) => {
const onSubmit = async (data: AddCommand) => {
await mutateAsync({
applicationId,
- registryId: data?.registryId,
+ registryId: data?.registryId === "none" ? null : data?.registryId,
replicas: data?.replicas,
})
.then(async () => {
@@ -177,6 +177,7 @@ export const ShowClusterSettings = ({ applicationId }: Props) => {
{registry.registryName}
))}
+ None
Registries ({registries?.length})