We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 463b9f0 commit d795c34Copy full SHA for d795c34
packages/gitbook/src/components/AIChat/AIChat.tsx
@@ -243,13 +243,13 @@ export function AIChatBody(props: {
243
style={{ animationDelay: '.5s' }}
244
data-testid="ai-chat-time-greeting"
245
>
246
- {greeting?.title ?? timeGreeting}
+ {greeting?.title || timeGreeting}
247
</h5>
248
<p
249
className="animate-blur-in-slow text-tint leading-tight [@container(min-height:400px)]:text-center"
250
style={{ animationDelay: '.6s' }}
251
252
- {greeting?.subtitle ??
+ {greeting?.subtitle ||
253
t(language, 'ai_chat_assistant_description')}
254
</p>
255
</div>
0 commit comments