diff --git a/admin-compliance/app/sdk/advisory-board/page.tsx b/admin-compliance/app/sdk/advisory-board/page.tsx index 074a520..fd00062 100644 --- a/admin-compliance/app/sdk/advisory-board/page.tsx +++ b/admin-compliance/app/sdk/advisory-board/page.tsx @@ -394,6 +394,10 @@ function AdvisoryBoardPageInner() { fac_access: false, fac_occupancy: false, fac_energy: false, // Sports spo_athlete: false, spo_fan: false, spo_doping: false, + // Finance / Banking + fin_credit_scoring: false, fin_aml_kyc: false, fin_algo_decisions: false, fin_customer_profiling: false, + // General + gen_affects_people: false, gen_automated_decisions: false, gen_sensitive_data: false, // Hosting (single-select tile) hosting_provider: '' as string, hosting_region: '' as string, @@ -604,6 +608,8 @@ function AdvisoryBoardPageInner() { fan_profiling: form.spo_fan, } : undefined, store_raw_text: true, + // Finance/Banking and General don't need separate context structs — + // their fields are evaluated via existing FinancialContext or generic rules } const url = isEditMode @@ -1473,6 +1479,54 @@ function AdvisoryBoardPageInner() { )} + + {/* Finance / Banking */} + {['finance', 'banking'].includes(form.domain) && ( +
+

Finanzdienstleistungen — Compliance-Fragen

+

DORA, MaRisk, BAIT, AI Act Annex III Nr. 5.

+
+ + + + +
+
+ )} + + {/* General — universal AI governance questions */} + {form.domain === 'general' && ( +
+

Allgemeine KI-Governance

+

Grundlegende Compliance-Fragen fuer jeden KI-Einsatz.

+
+ + + +
+
+ )} )}