summaryrefslogtreecommitdiff
path: root/src/services/math.ts
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-02-22 15:25:09 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-02-22 15:25:09 +1100
commitc6dd4a4e972aae03f469fd88fbcdae37b8a96c13 (patch)
tree26afefa3667e36492c5b797d556e958dfe4372b4 /src/services/math.ts
parentbar: optional modules (diff)
downloadcaelestia-shell-c6dd4a4e972aae03f469fd88fbcdae37b8a96c13.tar.gz
caelestia-shell-c6dd4a4e972aae03f469fd88fbcdae37b8a96c13.tar.bz2
caelestia-shell-c6dd4a4e972aae03f469fd88fbcdae37b8a96c13.zip
use state
Diffstat (limited to 'src/services/math.ts')
-rw-r--r--src/services/math.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/math.ts b/src/services/math.ts
index 925bbcb..5c7dfce 100644
--- a/src/services/math.ts
+++ b/src/services/math.ts
@@ -18,7 +18,7 @@ export default class Math extends GObject.Object {
}
readonly #maxHistory = config.maxHistory;
- readonly #path = `${CACHE}/math-history.json`;
+ readonly #path = `${STATE}/math-history.json`;
readonly #history: HistoryItem[] = [];
#variables: Record<string, string> = {};