fix(stronghold): change wrong argument name for remove (#422)

This commit is contained in:
Alexandre Dang
2023-06-07 13:09:43 +02:00
committed by GitHub
parent b3d7d11ae3
commit ea63b40224
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"stronghold-js": patch
---
Change the argument name of the `Stronghold.remove` from `location` to `recordPath` to match the Stronghold command argument
+1 -1
View File
@@ -378,7 +378,7 @@ export class Vault extends ProcedureExecutor {
snapshotPath: this.path,
client: this.client,
vault: this.name,
location,
recordPath: location.payload.record,
});
}
}