amalia/15-jan-26 #112

Merged
amaliadwiy merged 3 commits from amalia/15-jan-26 into main 2026-01-15 14:33:16 +08:00
5 changed files with 14 additions and 19 deletions
Showing only changes of commit 5807e98069 - Show all commits

View File

@@ -96,7 +96,7 @@ export default function FormSurat() {
setJenisSuratFix({ name: "", id: "" });
} else {
const namaJenis = fromSlug(jenisSurat);
const data = listCategory.find((item: any) => item.name == namaJenis);
const data = listCategory.find((item: any) => item.name.toUpperCase() == namaJenis.toUpperCase());
if (!data) return;
setJenisSuratFix(data);
}