From e7680c6c9e0d327bf74871223872dd8afa367bff Mon Sep 17 00:00:00 2001 From: sunghyunkang1111 Date: Thu, 14 Mar 2024 15:36:08 -0500 Subject: [PATCH] test commit --- src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx b/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx index fb6b79dd6..4dba9bb05 100644 --- a/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx +++ b/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx @@ -297,9 +297,9 @@ export const QueryCopilotPromptbar: React.FC = ({ if (isGeneratingQuery === null) { return " "; } else if (isGeneratingQuery) { - return "Content is loading"; + return "Content is loading!"; } else { - return "Content is updated"; + return "Content is updated!"; } };