-
+
)}
diff --git a/autogpt_platform/frontend/src/components/agptui/SearchBar.tsx b/autogpt_platform/frontend/src/components/agptui/SearchBar.tsx
index 48ee6b388..95e3a3fe8 100644
--- a/autogpt_platform/frontend/src/components/agptui/SearchBar.tsx
+++ b/autogpt_platform/frontend/src/components/agptui/SearchBar.tsx
@@ -12,6 +12,7 @@ interface SearchBarProps {
textColor?: string;
placeholderColor?: string;
width?: string;
+ height?: string;
}
/** SearchBar component for user input and search functionality. */
@@ -22,6 +23,7 @@ export const SearchBar: React.FC
= ({
textColor = "text-[#707070] dark:text-neutral-200",
placeholderColor = "text-[#707070] dark:text-neutral-400",
width = "w-9/10 lg:w-[56.25rem]",
+ height = "h-[60px]",
}) => {
const router = useRouter();
@@ -42,7 +44,7 @@ export const SearchBar: React.FC = ({