diff --git a/packages/app/src/components/quick-search/index.tsx b/packages/app/src/components/quick-search/index.tsx
index 7c24f0b97..88f1b7e12 100644
--- a/packages/app/src/components/quick-search/index.tsx
+++ b/packages/app/src/components/quick-search/index.tsx
@@ -72,7 +72,7 @@ export const QuickSearch = ({ open, onClose }: TransitionsModalProps) => {
width={620}
style={{
maxHeight: '80vh',
- minHeight: '350px',
+ minHeight: isPublic && query.length === 0 ? '72px' : '350px',
top: '12vh',
}}
>
@@ -100,37 +100,41 @@ export const QuickSearch = ({ open, onClose }: TransitionsModalProps) => {
/>
{isMac() ? '⌘ + K' : 'Ctrl + K'}
-
-
-
- {!isPublic ? (
-
- ) : (
-
- )}
-
- {!isPublic ? (
- showCreatePage ? (
- <>
-
-
-
-
- >
- ) : null
- ) : null}
-
+ {isPublic && query.length === 0 ? null : (
+ <>
+
+
+
+ {!isPublic ? (
+
+ ) : (
+
+ )}
+
+ {!isPublic ? (
+ showCreatePage ? (
+ <>
+
+
+
+
+ >
+ ) : null
+ ) : null}
+
+ >
+ )}