diff --git a/packages/app/src/components/header/quick-search-button.tsx b/packages/app/src/components/header/quick-search-button.tsx
index 3aadb9a6aa..6c5a484a70 100644
--- a/packages/app/src/components/header/quick-search-button.tsx
+++ b/packages/app/src/components/header/quick-search-button.tsx
@@ -1,5 +1,6 @@
import React from 'react';
import { IconButton, IconButtonProps } from '@/ui/button';
+import { Tooltip } from '@/ui/tooltip';
import { ArrowDownIcon } from '@blocksuite/icons';
import { useModal } from '@/providers/global-modal-provider';
@@ -10,15 +11,17 @@ export const QuickSearchButton = ({
const { triggerQuickSearchModal } = useModal();
return (
- {
- onClick?.(e);
- triggerQuickSearchModal();
- }}
- >
-
-
+
+ {
+ onClick?.(e);
+ triggerQuickSearchModal();
+ }}
+ >
+
+
+
);
};