chore: fix prettier formatting on telemetry import

This commit is contained in:
Aric Camarata 2026-06-30 15:52:55 -04:00
parent 8a39b318ee
commit 83d52931bd

View file

@ -15,10 +15,8 @@ export { imageFolder, cdnUrl } from "./helpers.js";
// ── 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: 'moon-cycle', version: '2.0.0' }),
)
import("@acamarata/telemetry")
.then(({ track }) => track("load", { package: "moon-cycle", version: "2.0.0" }))
.catch(() => {
// telemetry not installed or disabled — that's fine
});