mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2026-03-10 15:11:46 +00:00
Merge pull request #91 from Zod-Alkhair/feature/help-support-faq-lookup
fix build error
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user