We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 216fed2 + 35d1b0f commit 1f0f3c4Copy full SHA for 1f0f3c4
app/components/ChatMessages.tsx
@@ -7,8 +7,6 @@ import Reasoning from "./Reasoning";
7
import SamplePrompts from "./SamplePrompts";
8
import ChatDisclaimer from "./ChatDisclaimer";
9
10
-const LANDING_PAGE_VERSION = process.env.NEXT_PUBLIC_LANDING_PAGE_VERSION;
11
-
12
function ChatMessages() {
13
const containerRef = useRef<HTMLDivElement>(null);
14
const { messages, isLoading } = useChatStore();
@@ -110,7 +108,7 @@ function ChatMessages() {
110
108
{isLoading && index === lastUserMessageIndex && <Reasoning />}
111
109
112
{/* Prompt options for first message, removed when sent */}
113
- {messages.length < 2 && LANDING_PAGE_VERSION !== "public" && (
+ {messages.length < 2 && (
114
<SamplePrompts />
115
)}
116
</Fragment>
0 commit comments