updated tarot frame for mobile and desktop usability

This commit is contained in:
2026-04-13 14:28:03 -07:00
parent 7149bbfa7f
commit 4872e814c9
6 changed files with 1217 additions and 102 deletions
+7 -2
View File
@@ -378,9 +378,14 @@
}));
}
async function loadGematriaWordsByValue(value) {
async function loadGematriaWordsByValue(value, options = {}) {
const ciphers = Array.isArray(options?.ciphers)
? options.ciphers.map((cipherId) => String(cipherId || "").trim()).filter(Boolean).join(",")
: String(options?.ciphers || "").trim();
return fetchJson(buildApiUrl("/api/v1/gematria/words", {
value
value,
ciphers
}));
}