Skip to content

Commit e60e1bd

Browse files
committed
prettier
1 parent 3b688c0 commit e60e1bd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/packages/tour/components/TourTooltip.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const ProgressBar = ({
9696
currentStep: number;
9797
progressBarAdditionalClass: string;
9898
}) => {
99-
const progress = ((currentStep + 1) / (steps.length)) * 100;
99+
const progress = ((currentStep + 1) / steps.length) * 100;
100100

101101
return div({ className: progressClassName }, [
102102
div({

src/packages/tour/highlight.cy.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ context("Highlight", () => {
135135
},
136136
],
137137
})
138-
.start();
138+
.start();
139139

140140
cy.wait(500);
141141

@@ -228,7 +228,7 @@ context("Highlight", () => {
228228
cy.wait(500);
229229

230230
cy.compareSnapshot("highlight-fixed-element", {
231-
capture: "viewport"
231+
capture: "viewport",
232232
});
233233
});
234234
});
@@ -256,7 +256,7 @@ context("Highlight", () => {
256256
cy.wait(500);
257257

258258
cy.compareSnapshot("highlight-fixed-element-scroll", {
259-
capture: "viewport"
259+
capture: "viewport",
260260
});
261261
});
262262
});
@@ -284,7 +284,7 @@ context("Highlight", () => {
284284
cy.wait(500);
285285

286286
cy.compareSnapshot("highlight-fixed-parent-element-scroll", {
287-
capture: "viewport"
287+
capture: "viewport",
288288
});
289289
});
290290
});

0 commit comments

Comments
 (0)