Merge pull request #1764 from Infisical/fix-integration-sync-import-priority

Update priority of integration sync secrets for imported secrets
This commit is contained in:
Maidul Islam
2024-04-30 00:10:16 -04:00
committed by GitHub

View File

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