Skip to content

Commit

Permalink
Changing service to proper endpoint (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-walsh22 authored Jan 24, 2024
1 parent 762b3f8 commit 6784f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/faq.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class FaqService {
let res = null;
try {
this.loggerService.debug(`GETTING FAQ: }`);
res = await this.apiService.get('readfaq', { faq: 'faq' });
res = await this.apiService.get('faq', { faq: 'faq' });
return res[0].text;
} catch (e) {
this.loggerService.error(`${e}`);
Expand Down

0 comments on commit 6784f36

Please sign in to comment.