Skip to content

Commit

Permalink
cancel order: fix query for cancel order req body (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
sehyunc authored Feb 8, 2025
1 parent 93a6a1e commit 21083ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { toast } from "sonner"
import { Button } from "@/components/ui/button"
import { MaintenanceButtonWrapper } from "@/components/ui/maintenance-button-wrapper"

import { usePrepareCancelOrder } from "@/hooks/usePrepareCancelOrder"
import { usePrepareCancelOrder } from "@/hooks/use-prepare-cancel-order"
import { constructStartToastMessage } from "@/lib/constants/task"
import { cn } from "@/lib/utils"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function usePrepareCancelOrder(
id,
)
}
return undefined
return null
},
enabled: Boolean(config.state.seed),
})
Expand Down

0 comments on commit 21083ca

Please sign in to comment.