Update priority of integration sync secrets for imports to prioritize direct layer first

This commit is contained in:
Tuan Dang
2024-04-29 18:16:52 -07:00
parent c8638479a8
commit bf3e93460a

View File

@@ -318,7 +318,7 @@ export const secretQueueFactory = ({
});
// add the imported secrets to the current folder secrets
content = { ...content, ...importedSecrets };
content = { ...importedSecrets, ...content };
}
}