You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
655 B
24 lines
655 B
5 years ago
|
const version = 44
|
||
|
import { cloneDeep } from 'lodash'
|
||
|
|
||
|
/**
|
||
|
* Remove unused 'mkrMigrationReminderTimestamp' state from the `AppStateController`
|
||
|
*/
|
||
|
export default {
|
||
|
version,
|
||
|
migrate: async function (originalVersionedData) {
|
||
|
const versionedData = cloneDeep(originalVersionedData)
|
||
|
versionedData.meta.version = version
|
||
|
const state = versionedData.data
|
||
|
versionedData.data = transformState(state)
|
||
|
return versionedData
|
||
|
},
|
||
|
}
|
||
|
|
||
|
function transformState (state) {
|
||
|
if (typeof state?.AppStateController?.mkrMigrationReminderTimestamp !== 'undefined') {
|
||
|
delete state.AppStateController.mkrMigrationReminderTimestamp
|
||
|
}
|
||
|
return state
|
||
|
}
|