Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
fix(ui): custome->custom typos
Browse files Browse the repository at this point in the history
Signed-off-by: András Jáky <[email protected]>
  • Loading branch information
akijakya committed Aug 5, 2024
1 parent 81e6f04 commit 79f64bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/ProgressBar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const ProgressBar = ({
width = "100%",
message = null,
messageTooltipId = null,
customeTitle,
customTitle,
}) => {
const totalItems = itemsCompleted + itemsLeft;
const percent =
Expand All @@ -65,7 +65,7 @@ const ProgressBar = ({
</div>
{!icon ? (
<div className="progress-bar-title">
{!!customeTitle ? customeTitle : `${percent}%`}
{!!customTitle ? customTitle : `${percent}%`}
</div>
) : (
<IconComponent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ScoreBar = ({ score }) => {
itemsCompleted={score}
itemsLeft={10 - score}
width="130px"
customeTitle={score}
customTitle={score}
/>
);
};
Expand Down

0 comments on commit 79f64bc

Please sign in to comment.