Skip to content

Commit e113ee0

Browse files
authored
fix(kiloclaw): show Morning Briefing for all admin instances (#2808)
fix(kiloclaw): show Morning Briefing for admins on all image tags
1 parent bdafeda commit e113ee0

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

apps/web/src/app/(app)/claw/components/SettingsTab.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ type ClawMutations = ReturnType<typeof useKiloClawMutations>;
8484
const EXA_SEARCH_UI_MIN_CONTROLLER_VERSION = '2026.4.14';
8585
const MEMORY_MIN_OPENCLAW_VERSION = '2026.4.5';
8686
const OPENCLAW_IMPORT_UI_MIN_CONTROLLER_VERSION = '2026.4.22';
87-
const MORNING_BRIEFING_MIN_IMAGE_CALVER = '2026.4.24';
8887

8988
function formatMorningBriefingSchedule(cron: string, timezone: string): string {
9089
const parts = cron.trim().split(/\s+/);
@@ -1407,9 +1406,7 @@ export function SettingsTab({
14071406
: '/api/integrations/google/disconnect';
14081407
}, [organizationId]);
14091408
const canSeeGoogleCalendar = !!user?.is_admin;
1410-
const canSeeMorningBriefing =
1411-
!!user?.is_admin &&
1412-
calverAtLeast(cleanVersion(status.trackedImageTag), MORNING_BRIEFING_MIN_IMAGE_CALVER);
1409+
const canSeeMorningBriefing = !!user?.is_admin;
14131410

14141411
function handleCycleInboundEmailAddress() {
14151412
mutations.cycleInboundEmailAddress.mutate(undefined, {

0 commit comments

Comments
 (0)