fix: fixing stale state

This commit is contained in:
Chubby Granny Chaser
2025-02-16 05:18:08 +00:00
parent 9449d7cdcd
commit 484fa863dc
17 changed files with 50 additions and 90 deletions

View File

@@ -3,3 +3,4 @@ export * from "./games";
export * from "./game-shop-cache";
export * from "./game-achievements";
export * from "./keys";
export * from "./themes";

View File

@@ -2,6 +2,6 @@ import type { Theme } from "@types";
import { db } from "../level";
import { levelKeys } from "./keys";
export const themes = db.sublevel<string, Theme>(levelKeys.themes, {
export const themesSublevel = db.sublevel<string, Theme>(levelKeys.themes, {
valueEncoding: "json",
});