Skip to content

Commit

Permalink
fix: loading bar
Browse files Browse the repository at this point in the history
  • Loading branch information
varun2948 committed Sep 14, 2023
1 parent 4c6e88e commit 59bc848
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/frontend/main/src/components/createproject/LoadingBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,17 @@ const LoadingBar = ({ activeStep, totalSteps, title }) => {
borderRadius: '20%',
}}
>
{/* <div className="fmtm-relative fmtm-mx-2 fmtm-my-3 fmtm-h-5 fmtm-rounded-full fmtm-bg-gray-200">
<div
className="fmtm-h-full fmtm-rounded-full fmtm-bg-blue-500"
style={{ width: '50%' }}
// style={{ width: calculateProgress(totalSteps, activeStep) }}
>
<span className="fmtm-absolute fmtm-inset-0 fmtm-flex fmtm-items-center fmtm-justify-center fmtm-text-xs fmtm-font-semibold fmtm-text-black">
{completedPercentage}%
</span>
</div>
</div> */}
<LinearProgress
variant="determinate"
value={completedPercentage}
Expand Down

0 comments on commit 59bc848

Please sign in to comment.