diff --git a/frontend/src/certs/NewRegister/RegisterPresets.tsx b/frontend/src/certs/NewRegister/RegisterPresets.tsx index ebfe5f9..82a56ae 100644 --- a/frontend/src/certs/NewRegister/RegisterPresets.tsx +++ b/frontend/src/certs/NewRegister/RegisterPresets.tsx @@ -4,7 +4,7 @@ import { getCourseMemo } from "../../utils/allCourses"; import { Course } from "../../types/Course"; import { RegistrationPreview } from "."; -type PresetName = "None" | "2 Matpel" | "3 Matpel" | "4 Escolta" | "MD, 2 Matpel" | "3 4x4" | "2 4x4"; +type PresetName = "None" | "2 Matpel" | "3 Matpel" | "4 Escolta" | "MD, 2 Matpel" | "3 4x4" | "2 4x4" | "6 Sibia"; function genPresets(): {[k: string]: Array>} { return { @@ -37,6 +37,14 @@ function genPresets(): {[k: string]: Array>} { getCourseMemo("4x4"), getCourseMemo("Manejo Defensivo"), ], + "6 Sibia": [ + getCourseMemo("Matpel 2"), + getCourseMemo("Matpel 1"), + getCourseMemo("Manejo Defensivo"), + getCourseMemo("Primeros Auxilios"), + getCourseMemo("IPERC"), + getCourseMemo("Lucha contra Incendios"), + ], }; }