update commit message

This commit is contained in:
2026-05-29 00:27:03 -07:00
parent ed1107a0c0
commit 254f488eca
21 changed files with 565 additions and 210 deletions
+12
View File
@@ -1,6 +1,10 @@
(function () {
"use strict";
function hasTarotAccess() {
return window.TarotAppConfig?.hasTarotAccess?.() === true;
}
function findSignIdByAstrologyName(name, context) {
const { api, getState } = context;
const token = api.normalizeCalendarText(name);
@@ -140,6 +144,10 @@
}
function renderMajorArcanaCard(context) {
if (!hasTarotAccess()) {
return "";
}
const { month, api } = context;
const selectedDay = api.getSelectedDayFilterContext(month);
const allRows = buildMajorArcanaRowsForMonth(context);
@@ -191,6 +199,10 @@
}
function renderDecanTarotCard(context) {
if (!hasTarotAccess()) {
return "";
}
const { month, api } = context;
const selectedDay = api.getSelectedDayFilterContext(month);
const allRows = api.buildDecanTarotRowsForMonth(month);