| 12345678910 |
- const pagesPatientFn = {
- hasOrderToBePaid: async (serviceId: string) => {
- console.warn('pagesPatientFn.hasOrderToBePaid is missing, returning false to allow flow.');
- return false;
- },
- handleRouter: (e: any, pageName: string, serviceId: string, index: number) => {
- console.warn('pagesPatientFn.handleRouter is missing, logging call:', pageName, serviceId, index);
- }
- };
- export default pagesPatientFn;
|