Fix BookingWidgetSkeleton after merge

This commit is contained in:
Anton Gunnarsson
2024-11-15 11:48:52 +01:00
parent d83a839ed6
commit eaf9aa7277
4 changed files with 10 additions and 11 deletions
+5 -3
View File
@@ -188,10 +188,12 @@ export default function BookingWidgetClient({
export function BookingWidgetSkeleton() {
return (
<>
<section className={styles.containerDesktop}>
<BookingWidgetFormSkeleton />
<section className={styles.wrapper} style={{ top: 0 }}>
<MobileToggleButtonSkeleton />
<div className={styles.formContainer}>
<BookingWidgetFormSkeleton />
</div>
</section>
<MobileToggleButtonSkeleton />
</>
)
}