Skip to content

Commit

Permalink
fix: handleInitializeGUISchema to return null if isExternalApp
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhishekA1509 committed Nov 6, 2024
1 parent edb0463 commit 84a8dcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const ManifestComponent = ({
}, [error, secretViewAccess, desiredManifest, activeManifestEditorData, manifest, modifiedManifest, id, guiSchema])

const handleInitializeGUISchema = async (abortSignal: AbortSignal) => {
if (!getManifestGUISchema || !isExternalApp) {
if (!getManifestGUISchema || isExternalApp) {
return
}

Expand Down

0 comments on commit 84a8dcb

Please sign in to comment.