@wix/vibe-bookings-plugin 0.14.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -2980,7 +2980,7 @@ var getRouterFileContent = () => {
|
|
|
2980
2980
|
import { ServiceDetails } from '@/components/bookings/ServiceDetails';
|
|
2981
2981
|
import { TimeSlotListPage } from '@/components/bookings/TimeSlotListPage';
|
|
2982
2982
|
import { BookingFormPage } from '@/components/bookings/BookingFormPage';
|
|
2983
|
-
import {
|
|
2983
|
+
import { loadServiceListServiceInitialData } from '@wix/bookings/services';
|
|
2984
2984
|
import { useLoaderData, useParams } from 'react-router-dom';
|
|
2985
2985
|
|
|
2986
2986
|
// Service list route component
|
|
@@ -3016,7 +3016,7 @@ var getRouterFileContent = () => {
|
|
|
3016
3016
|
|
|
3017
3017
|
// Loader for service list route
|
|
3018
3018
|
async function serviceListLoader() {
|
|
3019
|
-
const servicesListConfig = await
|
|
3019
|
+
const servicesListConfig = await loadServiceListServiceInitialData({});
|
|
3020
3020
|
return { servicesListConfig };
|
|
3021
3021
|
}
|
|
3022
3022
|
|