Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
binrysearch committed Sep 11, 2024
1 parent 3b688c0 commit e60e1bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/packages/tour/components/TourTooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const ProgressBar = ({
currentStep: number;
progressBarAdditionalClass: string;
}) => {
const progress = ((currentStep + 1) / (steps.length)) * 100;
const progress = ((currentStep + 1) / steps.length) * 100;

return div({ className: progressClassName }, [
div({
Expand Down
8 changes: 4 additions & 4 deletions src/packages/tour/highlight.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ context("Highlight", () => {
},
],
})
.start();
.start();

cy.wait(500);

Expand Down Expand Up @@ -228,7 +228,7 @@ context("Highlight", () => {
cy.wait(500);

cy.compareSnapshot("highlight-fixed-element", {
capture: "viewport"
capture: "viewport",
});
});
});
Expand Down Expand Up @@ -256,7 +256,7 @@ context("Highlight", () => {
cy.wait(500);

cy.compareSnapshot("highlight-fixed-element-scroll", {
capture: "viewport"
capture: "viewport",
});
});
});
Expand Down Expand Up @@ -284,7 +284,7 @@ context("Highlight", () => {
cy.wait(500);

cy.compareSnapshot("highlight-fixed-parent-element-scroll", {
capture: "viewport"
capture: "viewport",
});
});
});
Expand Down

0 comments on commit e60e1bd

Please sign in to comment.