pagesPatientFn.ts 418 B

12345678910
  1. const pagesPatientFn = {
  2. hasOrderToBePaid: async (serviceId: string) => {
  3. console.warn('pagesPatientFn.hasOrderToBePaid is missing, returning false to allow flow.');
  4. return false;
  5. },
  6. handleRouter: (e: any, pageName: string, serviceId: string, index: number) => {
  7. console.warn('pagesPatientFn.handleRouter is missing, logging call:', pageName, serviceId, index);
  8. }
  9. };
  10. export default pagesPatientFn;