Skip to content

Commit

Permalink
fix(web/editor): Wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Oct 8, 2023
1 parent 63e237d commit f00a406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/web/components/editor/action/ActionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const ActionCard = () => {
const onSelectServiceClick = (service: Service) => {
setWorkflow((prev) => ({
...prev,
action: { ...prev.action, areaId: undefined, areaService: service },
action: { ...prev.action, area: undefined, areaService: service },
}));
setStep(Step.SELECT_EVENT_AND_ACCOUNT);
};
Expand Down

0 comments on commit f00a406

Please sign in to comment.