diff --git a/frontend/src/lib/components/ProductForm.svelte b/frontend/src/lib/components/ProductForm.svelte index 700ceb1..67b81a5 100644 --- a/frontend/src/lib/components/ProductForm.svelte +++ b/frontend/src/lib/components/ProductForm.svelte @@ -35,7 +35,7 @@ 'exfoliant_aha', 'exfoliant_bha', 'exfoliant_pha', 'retinoid', 'antioxidant', 'soothing', 'barrier_support', 'brightening', 'anti_acne', 'ceramide', 'niacinamide', - 'sunscreen', 'peptide', 'hair_growth_stimulant', 'prebiotic', 'vitamin_c' + 'sunscreen', 'peptide', 'hair_growth_stimulant', 'prebiotic', 'vitamin_c', 'anti_aging' ]; const interactionScopes: InteractionScope[] = ['same_step', 'same_day', 'same_period']; const tristate = [ diff --git a/frontend/src/lib/types.ts b/frontend/src/lib/types.ts index b30dbd5..150c1bf 100644 --- a/frontend/src/lib/types.ts +++ b/frontend/src/lib/types.ts @@ -23,7 +23,8 @@ export type IngredientFunction = | 'peptide' | 'hair_growth_stimulant' | 'prebiotic' - | 'vitamin_c'; + | 'vitamin_c' + | 'anti_aging'; export type InteractionScope = 'same_step' | 'same_day' | 'same_period'; export type MedicationKind = 'prescription' | 'otc' | 'supplement' | 'herbal' | 'other'; export type OverallSkinState = 'excellent' | 'good' | 'fair' | 'poor';