mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
17 lines
306 B
TypeScript
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
|