fix(SW-1143) removed async from fallback
This commit is contained in:
@@ -8,7 +8,7 @@ type Props = {
|
||||
count?: number
|
||||
}
|
||||
|
||||
export async function SelectHotelMapContainerSkeleton({ count = 2 }: Props) {
|
||||
export function SelectHotelMapContainerSkeleton({ count = 2 }: Props) {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<div className={styles.listingContainer}>
|
||||
|
||||
@@ -8,7 +8,7 @@ type Props = {
|
||||
count?: number
|
||||
}
|
||||
|
||||
export async function SelectHotelSkeleton({ count = 4 }: Props) {
|
||||
export function SelectHotelSkeleton({ count = 4 }: Props) {
|
||||
return (
|
||||
<div className={styles.skeletonContainer}>
|
||||
<header className={styles.header}>
|
||||
|
||||
Reference in New Issue
Block a user