diff --git a/src/shared/schemas/default.js b/src/shared/schemas/default.js index 533070fb4f..6d11457489 100644 --- a/src/shared/schemas/default.js +++ b/src/shared/schemas/default.js @@ -286,13 +286,6 @@ export const WalletSettingsSchema = { type: 'bool', default: false, }, - /** - * Determines if deep linking is enabled - */ - deepLinking: { - type: 'bool', - default: false, - }, }, }; diff --git a/src/shared/schemas/v2/index.js b/src/shared/schemas/v2/index.js index 4af119e858..e7be08035b 100644 --- a/src/shared/schemas/v2/index.js +++ b/src/shared/schemas/v2/index.js @@ -1,6 +1,6 @@ import merge from 'lodash/merge'; import map from 'lodash/map'; -import defaultSchemas from '../default'; +import v1Schema from '../v1'; const migration = (_, newRealm) => { const walletData = newRealm.objectForPrimaryKey('Wallet', 1); @@ -9,7 +9,7 @@ const migration = (_, newRealm) => { walletData.version = 2; }; -export default map(defaultSchemas, (schema) => { +export default map(v1Schema, (schema) => { if (schema.name === 'WalletSettings') { return merge({}, schema, { properties: {