1
0
mirror of https://github.com/tooot-app/app synced 2025-04-04 21:51:12 +02:00

Fix migration issue

This commit is contained in:
Zhiyuan Zheng 2021-11-27 18:49:14 +01:00
parent 0c28ea6b0c
commit e2a5235ccb

View File

@ -49,10 +49,12 @@ const instancesMigration = {
} }
}, },
6: (state: InstanceV5) => { 6: (state: InstanceV5) => {
return state.instances.map(instance => { return {
instances: state.instances.map(instance => {
return { ...instance, configuration: undefined } return { ...instance, configuration: undefined }
}) })
} }
}
} }
export default instancesMigration export default instancesMigration