chore: fix prettier formatting on telemetry import

This commit is contained in:
Aric Camarata 2026-06-30 15:52:46 -04:00
parent 169b9ec521
commit c215dc38b4

View file

@ -14,10 +14,8 @@ export const fcnaCalendar = new FcnaCalendar();
// ── Opt-in anonymous telemetry ────────────────────────────────────────────────
// Off by default. Enable: ACAMARATA_TELEMETRY=1
// What is sent + how to disable: https://github.com/acamarata/telemetry/blob/main/TELEMETRY.md
import('@acamarata/telemetry')
.then(({ track }) =>
track('load', { package: 'temporal-hijri', version: '1.0.3' }),
)
import("@acamarata/telemetry")
.then(({ track }) => track("load", { package: "temporal-hijri", version: "1.0.3" }))
.catch(() => {
// telemetry not installed or disabled — that is fine
});