${this.people.map(
(person) => html`
diff --git a/frontend/demo/component/slider/react/range-slider-custom-validation.tsx b/frontend/demo/component/slider/react/range-slider-custom-validation.tsx
index 3a9a4ab373..a726d104c8 100644
--- a/frontend/demo/component/slider/react/range-slider-custom-validation.tsx
+++ b/frontend/demo/component/slider/react/range-slider-custom-validation.tsx
@@ -29,7 +29,7 @@ function Example() {
invalid.value = true;
} else {
errorMessage.value = '';
- invalid.value = false
+ invalid.value = false;
}
}}
/>
diff --git a/frontend/demo/component/tabs/tabsheet-lazy-initialization.ts b/frontend/demo/component/tabs/tabsheet-lazy-initialization.ts
index de25885a8f..227286b4ef 100644
--- a/frontend/demo/component/tabs/tabsheet-lazy-initialization.ts
+++ b/frontend/demo/component/tabs/tabsheet-lazy-initialization.ts
@@ -31,15 +31,21 @@ export class Example extends LitElement {
Shipping
- ${this.visitedTabs.has(0)
- ? html`This is the Dashboard tab content
`
- : ''}
- ${this.visitedTabs.has(1)
- ? html`This is the Payment tab content
`
- : ''}
- ${this.visitedTabs.has(2)
- ? html`This is the Shipping tab content
`
- : ''}
+ ${
+ this.visitedTabs.has(0)
+ ? html`This is the Dashboard tab content
`
+ : ''
+ }
+ ${
+ this.visitedTabs.has(1)
+ ? html`This is the Payment tab content
`
+ : ''
+ }
+ ${
+ this.visitedTabs.has(2)
+ ? html`This is the Shipping tab content
`
+ : ''
+ }
`;
}