Let the user approve revision updates before proceeding

This commit is contained in:
2026-02-09 20:46:15 -07:00
parent a93e4ab521
commit 97231c6b38
4 changed files with 218 additions and 23 deletions

View File

@@ -42,6 +42,7 @@ type GlobalCtxType = {
} | null
viewingInfoFromDownloads: boolean
version: string | null
downloadVersions: (list: string[]) => Promise<void>
}
const GlobalCtx = createContext<GlobalCtxType | null>(null)