diff --git a/ui/src/components/ProgressBar/index.jsx b/ui/src/components/ProgressBar/index.jsx index 344bd61fb..95039a6e4 100644 --- a/ui/src/components/ProgressBar/index.jsx +++ b/ui/src/components/ProgressBar/index.jsx @@ -39,7 +39,7 @@ const ProgressBar = ({ width = "100%", message = null, messageTooltipId = null, - customeTitle, + customTitle, }) => { const totalItems = itemsCompleted + itemsLeft; const percent = @@ -65,7 +65,7 @@ const ProgressBar = ({ {!icon ? (
- {!!customeTitle ? customeTitle : `${percent}%`} + {!!customTitle ? customTitle : `${percent}%`}
) : ( { itemsCompleted={score} itemsLeft={10 - score} width="130px" - customeTitle={score} + customTitle={score} /> ); };