diff --git a/frontend/app/create/item/page.tsx b/frontend/app/create/item/page.tsx
index 8d6283e..2f02c9d 100644
--- a/frontend/app/create/item/page.tsx
+++ b/frontend/app/create/item/page.tsx
@@ -4,7 +4,7 @@ import { ItemForm } from "@/components/listings/form/ItemForm";
export default function CreateItemPage() {
return (
-
+ <>
@@ -12,6 +12,6 @@ export default function CreateItemPage() {
New Item
-
+ >
);
}
diff --git a/frontend/app/create/sublet/page.tsx b/frontend/app/create/sublet/page.tsx
index d249c02..7b4f7ef 100644
--- a/frontend/app/create/sublet/page.tsx
+++ b/frontend/app/create/sublet/page.tsx
@@ -4,7 +4,7 @@ import { SubletForm } from "@/components/listings/form/SubletForm";
export default function CreateSubletPage() {
return (
-
+ <>
@@ -12,6 +12,6 @@ export default function CreateSubletPage() {
New Sublet
-
+ >
);
}
diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx
index 1c88c07..4eca204 100644
--- a/frontend/app/layout.tsx
+++ b/frontend/app/layout.tsx
@@ -36,7 +36,9 @@ export default function RootLayout({
- {children}
+
+ {children}
+
diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx
index 65f27ef..37337e6 100644
--- a/frontend/app/page.tsx
+++ b/frontend/app/page.tsx
@@ -21,12 +21,12 @@ export default async function ItemsPage() {
]);
return (
-
+ >
);
}
diff --git a/frontend/app/sublets/page.tsx b/frontend/app/sublets/page.tsx
index c36ae5f..f77f50b 100644
--- a/frontend/app/sublets/page.tsx
+++ b/frontend/app/sublets/page.tsx
@@ -21,12 +21,12 @@ export default async function SubletsPage() {
]);
return (
-
+ >
);
}
diff --git a/frontend/components/listings/detail/ListingDetail.tsx b/frontend/components/listings/detail/ListingDetail.tsx
index 358023e..091269a 100644
--- a/frontend/components/listings/detail/ListingDetail.tsx
+++ b/frontend/components/listings/detail/ListingDetail.tsx
@@ -65,7 +65,7 @@ export const ListingDetail = ({ listingId }: Props) => {
const hasLocation = subletCoords?.latitude != null && subletCoords?.longitude != null;
return (
-
+ <>
@@ -112,6 +112,6 @@ export const ListingDetail = ({ listingId }: Props) => {
/>
-
+ >
);
};