diff --git a/components/layout/Layout.tsx b/components/layout/Layout.tsx
index f7ed8782d7c5..dda67e77fd40 100644
--- a/components/layout/Layout.tsx
+++ b/components/layout/Layout.tsx
@@ -58,5 +58,5 @@ export default function Layout({ children }: ILayoutProps): React.JSX.Element {
return {children};
}
- return
{children}
;
+ return {children}
;
}
diff --git a/components/navigation/FilterDropdown.tsx b/components/navigation/FilterDropdown.tsx
index dde325dc5690..3b5cab103dcd 100644
--- a/components/navigation/FilterDropdown.tsx
+++ b/components/navigation/FilterDropdown.tsx
@@ -67,7 +67,7 @@ export default function FilterDropdown({ className = '', onChange, options, sele
{options.map((option) => {
const isSelected = option.value === selected;