Skip to content

Commit ce2ea98

Browse files
committed
padding so file search results title not under navbar
1 parent f67a71f commit ce2ea98

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/client/components/ChatV2/ChatV2.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,6 @@ export const ChatV2 = () => {
513513
handleCancel={handleCancel}
514514
handleContinue={(newMessage) => handleSubmit(newMessage, true)}
515515
handleSubmit={(newMessage) => {
516-
console.log('handle submit called!')
517516
chatScroll.shouldScroll.current = true
518517
chatScroll.autoScroll()
519518
handleSubmit(newMessage, false)
@@ -562,6 +561,8 @@ export const ChatV2 = () => {
562561
borderLeft: '1px solid rgba(0,0,0,0.12)',
563562
width: 400,
564563
minWidth: 400,
564+
// Padding for navbar
565+
paddingTop: !isEmbeddedMode ? '4rem' : '0',
565566
}}
566567
>
567568
<Box

0 commit comments

Comments
 (0)