fix(core): revert auto-save of policies to user space (#20531)

This commit is contained in:
Abhijit Balaji
2026-02-27 08:03:36 -08:00
committed by GitHub
parent 29742763db
commit bb33d98497
4 changed files with 13 additions and 42 deletions
+1 -4
View File
@@ -169,10 +169,7 @@ export class Storage {
}
getAutoSavedPolicyPath(): string {
return path.join(
this.getWorkspacePoliciesDir(),
AUTO_SAVED_POLICY_FILENAME,
);
return path.join(Storage.getUserPoliciesDir(), AUTO_SAVED_POLICY_FILENAME);
}
ensureProjectTempDirExists(): void {