Skip to content

Commit

Permalink
PWA-3178::Order statuses are decoupled from the back-end
Browse files Browse the repository at this point in the history
  • Loading branch information
glo82145 committed Feb 2, 2024
1 parent bac277b commit 42aec8d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const TOTAL_STEPS = 4;
const OrderProgressBar = props => {
const { status } = props;
const { formatMessage } = useIntl();
console.log(status);
const statusStepMap = new Map([
[
formatMessage({
Expand Down Expand Up @@ -49,7 +48,7 @@ const OrderProgressBar = props => {
],
]);
const currentStep = statusStepMap.get(status);
console.log(currentStep);

const classes = useStyle(defaultClasses, props.classes);

const stepElements = useMemo(() => {
Expand Down

0 comments on commit 42aec8d

Please sign in to comment.