ultisuite-client/components/gmail/settings/sections/agenda-settings-section.tsx
R3D347HR4Y 2a0958b70d
Some checks are pending
E2E / Playwright e2e (push) Waiting to run
feat: update agenda references to use ULTICAL_APP_NAME and enhance AI usage sections
- Replaced hardcoded "Agenda" labels with dynamic ULTICAL_APP_NAME in various components for consistency.
- Introduced new AiUsageSection and CompteAiUsageSection components to track AI usage and costs.
- Updated settings and metadata to reflect changes in AI cost policies and usage limits.
- Enhanced user interface elements for better accessibility and user experience across admin settings.
2026-06-16 10:46:31 +02:00

17 lines
516 B
TypeScript

"use client"
import { AgendaSettingsFields } from "@/components/agenda/agenda-settings-fields"
import { ULTICAL_APP_NAME } from "@/lib/suite/page-metadata"
export function AgendaSettingsSection() {
return (
<>
<SettingsSectionHeader
title={`Réglages ${ULTICAL_APP_NAME}`}
description="Affichage, visioconférence, invitations, agendas par compte, calendriers iCal et vues. Le thème suit les réglages d'affichage."
/>
<AgendaSettingsFields variant="page" />
</>
)
}