diff --git a/html_config/index.html b/html_config/index.html
index bade251..7e16a9f 100644
--- a/html_config/index.html
+++ b/html_config/index.html
@@ -402,6 +402,11 @@
storeConfig() {
const storeConfig = JSON.parse(JSON.stringify(this.configData))
const oldBK = storeConfig.boskrypt.keys
+ Object.keys(storeConfig.deliveryPresets)
+ .map(_key => {
+ delete storeConfig.deliveryPresets[_key]._id
+ })
+
storeConfig.boskrypt.keys = Object.values(oldBK).reduce((total, keyData) => {
total[ keyData.identifier ] = keyData.value
return total