fix: Have shipping options open by default (#8040)

CLOSES CORE-2455
This commit is contained in:
Stevche Radevski
2024-07-09 15:59:45 +02:00
committed by GitHub
parent 00a6e512dc
commit 101ebbe0f0
5 changed files with 9 additions and 5 deletions

View File

@@ -280,7 +280,7 @@ type ServiceZoneProps = {
function ServiceZone({ zone, locationId, fulfillmentSetId }: ServiceZoneProps) {
const { t } = useTranslation()
const prompt = usePrompt()
const [open, setOpen] = useState(false)
const [open, setOpen] = useState(true)
const { mutateAsync: deleteZone } = useDeleteFulfillmentServiceZone(
fulfillmentSetId,