1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

More visually stable me page

This commit is contained in:
Zhiyuan Zheng
2021-11-15 23:43:35 +01:00
parent 7ac789c18c
commit 0c28ea6b0c
5 changed files with 89 additions and 11 deletions

View File

@ -0,0 +1,16 @@
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