From 9ef0159c3e34f15eb8a9811e37ce56c8e51a8ae3 Mon Sep 17 00:00:00 2001 From: Eliezer Steinbock <3090527+elie222@users.noreply.github.com> Date: Sun, 4 Jan 2026 10:00:13 +0200 Subject: [PATCH] fix: Check for enabled rules in Reply Zero page --- .../app/(app)/[emailAccountId]/reply-zero/onboarding/page.tsx | 1 + apps/web/app/(app)/[emailAccountId]/reply-zero/page.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/web/app/(app)/[emailAccountId]/reply-zero/onboarding/page.tsx b/apps/web/app/(app)/[emailAccountId]/reply-zero/onboarding/page.tsx index dfb790c685..88f481b6b9 100644 --- a/apps/web/app/(app)/[emailAccountId]/reply-zero/onboarding/page.tsx +++ b/apps/web/app/(app)/[emailAccountId]/reply-zero/onboarding/page.tsx @@ -13,6 +13,7 @@ export default async function OnboardingReplyTracker(props: { where: { emailAccountId, systemType: { in: CONVERSATION_STATUS_TYPES }, + enabled: true, }, select: { id: true }, }); diff --git a/apps/web/app/(app)/[emailAccountId]/reply-zero/page.tsx b/apps/web/app/(app)/[emailAccountId]/reply-zero/page.tsx index 74ad15ca0b..48b57efeab 100644 --- a/apps/web/app/(app)/[emailAccountId]/reply-zero/page.tsx +++ b/apps/web/app/(app)/[emailAccountId]/reply-zero/page.tsx @@ -47,6 +47,7 @@ export default async function ReplyTrackerPage(props: { systemType: { in: CONVERSATION_STATUS_TYPES, }, + enabled: true, }, select: { id: true }, },