Skip to content

Commit 3e00732

Browse files
committed
Fix astro check errors
1 parent e80ec57 commit 3e00732

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import ContactForm from '../../index.astro'
2+
import ContactFormComponent from '../../index.astro'
33
---
44

5-
<ContactForm />
5+
<ContactFormComponent />

src/components/Toasts/NetworkStatus/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import styles from './index.module.css'
1515
---
1616

1717
<network-status-toast
18-
class:list={['network-status-toast', styles.toastHost]}
18+
class:list={['network-status-toast', styles['toastHost']]}
1919
data-testid="network-status-toast"
2020
></network-status-toast>
2121

src/pages/testing/carousel.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
import BaseLayout from '@layouts/BaseLayout.astro'
3-
import Carousel from '@components/Carousel/index.astro'
3+
import CarouselComponent from '@components/Carousel/index.astro'
44
55
const pageTitle = 'Carousel Testing Ground'
66
const pageDescription = 'Dedicated page for validating carousel interactions without relying on marketing pages.'
@@ -21,7 +21,7 @@ const pagePath = '/testing/carousel'
2121
</p>
2222
</section>
2323

24-
<Carousel
24+
<CarouselComponent
2525
title="Featured Case Studies"
2626
variant="suggested"
2727
limit={6}

src/pages/testing/consent-preferences.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
import BaseLayout from '@layouts/BaseLayout.astro'
3-
import ConsentPreferences from '@components/Consent/Preferences/index.astro'
3+
import ConsentPreferencesComponent from '@components/Consent/Preferences/index.astro'
44
55
const pageTitle = 'Consent Preferences Testing Ground'
66
const pageDescription = 'Isolated render of the consent preferences modal for QA and automation coverage.'
@@ -20,5 +20,5 @@ const pagePath = '/testing/consent-preferences'
2020
</p>
2121
</section>
2222

23-
<ConsentPreferences />
23+
<ConsentPreferencesComponent />
2424
</BaseLayout>

0 commit comments

Comments
 (0)