1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/src/utils/migrations/contexts/migration.ts
2021-11-15 23:43:35 +01:00

17 lines
306 B
TypeScript

import { ContextsV0 } from './v0'
const contextsMigration = {
1: (state: ContextsV0) => {
return (state = {
...state,
// @ts-ignore
mePage: {
lists: { shown: false },
announcements: { shown: false, unread: 0 }
}
})
}
}
export default contextsMigration