diff --git a/src/interface/web/app/components/agentCard/agentCard.tsx b/src/interface/web/app/components/agentCard/agentCard.tsx index 1d6020e7a..3dba4d3ac 100644 --- a/src/interface/web/app/components/agentCard/agentCard.tsx +++ b/src/interface/web/app/components/agentCard/agentCard.tsx @@ -526,7 +526,7 @@ export function AgentModificationForm(props: AgentModificationFormProps) { const [allFileOptions, setAllFileOptions] = useState([]); const [currentStep, setCurrentStep] = useState(0); - const [showSubscribeDialog, setShowSubscribeDialog] = useState(true); + const [showSubscribeDialog, setShowSubscribeDialog] = useState(false); const privacyOptions = ["public", "private", "protected"]; @@ -684,7 +684,7 @@ export function AgentModificationForm(props: AgentModificationFormProps) { } }; - if (!props.isSubscribed && showSubscribeDialog) { + if (showSubscribeDialog) { return ( @@ -1271,7 +1271,7 @@ export function AgentModificationForm(props: AgentModificationFormProps) {