Skip to content

Commit

Permalink
Update MultiStepProgressBar.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
zain55337 committed Jul 20, 2023
1 parent a8440e6 commit 48cb0f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/javascript/components/MultiStepProgressBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from "react";
import StepProgressBar from "react-step-progress";
// import the stylesheet
import "react-step-progress/dist/index.css";
import ReactRouterPropTypes from "react-router-prop-types";
import PropTypes from "prop-types";

// import "../../stylesheets/multistepprogressbar.css";
// import { ProgressBar, Step, StepLabel } from "react-step-progress-bar";
Expand Down Expand Up @@ -88,7 +88,7 @@ const MultiStepProgressBar = ({ page }) => {
);
};
MultiStepProgressBar.propTypes = {
page: ReactRouterPropTypes.page.isRequired,
page: PropTypes.string.isRequired,
};

export default MultiStepProgressBar;

0 comments on commit 48cb0f3

Please sign in to comment.