From 33bb35cb99027daf4f74261507c432f803063d13 Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Thu, 2 Jan 2025 15:16:34 +0700 Subject: [PATCH] fix: enable default opt-in analytic (#4387) --- web/helpers/atoms/Setting.atom.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/helpers/atoms/Setting.atom.ts b/web/helpers/atoms/Setting.atom.ts index 3568d87d0..bd398f1e7 100644 --- a/web/helpers/atoms/Setting.atom.ts +++ b/web/helpers/atoms/Setting.atom.ts @@ -47,7 +47,7 @@ export const spellCheckAtom = atomWithStorage( ) export const productAnalyticAtom = atomWithStorage( PRODUCT_ANALYTIC, - false, + true, undefined, { getOnInit: true } )