fix build error

This commit is contained in:
Abdalhamid Alhamad
2026-01-25 14:10:46 +03:00
parent 25ede3c9e7
commit db946b9531

View File

@ -46,7 +46,9 @@ export class LookupController {
throw new BadRequestException('Accept-Language must be "en" or "ar".');
}
const faqs = this.lookupService.getHelpSupportFaqs(normalized === LookupLanguage.AR ? 'ar' : 'en');
const faqs = this.lookupService.getHelpSupportFaqs(
normalized === LookupLanguage.AR ? LookupLanguage.AR : LookupLanguage.EN,
);
return ResponseFactory.dataArray(faqs);
}