Add version number to settings page

This commit is contained in:
2025-12-20 14:35:23 -07:00
parent 50d64b2905
commit cc79eb6d4a
10 changed files with 100 additions and 66 deletions

View File

@@ -35,6 +35,7 @@ type GlobalCtxType = {
total: number
} | null
viewingInfoFromDownloads: boolean
version: string | null
}
const GlobalCtx = createContext<GlobalCtxType | null>(null)