Compare commits
3 Commits
Multiple-T
...
v0.1.5.1
Author | SHA1 | Date | |
---|---|---|---|
f0037226a9 | |||
12da9812df | |||
ce019a2bd9 |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "quests-template-basic",
|
"name": "quests-template-basic",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.1.4",
|
"version": "0.1.5.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"check:types": "tsc --noEmit",
|
"check:types": "tsc --noEmit",
|
||||||
|
@@ -3,7 +3,7 @@ import { useMutation, useQuery } from "@tanstack/react-query";
|
|||||||
import { queryClient } from "@/client/rpc-client";
|
import { queryClient } from "@/client/rpc-client";
|
||||||
|
|
||||||
// Feature flag for multi-treatments availability API compatibility
|
// Feature flag for multi-treatments availability API compatibility
|
||||||
const USE_MULTI_TREATMENTS_AVAILABILITY = false;
|
const USE_MULTI_TREATMENTS_AVAILABILITY = true;
|
||||||
|
|
||||||
export function BookingForm() {
|
export function BookingForm() {
|
||||||
const [selectedTreatments, setSelectedTreatments] = useState<Array<{id: string, name: string, duration: number, price: number}>>([]);
|
const [selectedTreatments, setSelectedTreatments] = useState<Array<{id: string, name: string, duration: number, price: number}>>([]);
|
||||||
|
Reference in New Issue
Block a user