We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a456679 commit a5ef46fCopy full SHA for a5ef46f
apps/masterbots.ai/lib/hooks/use-thread.tsx
@@ -17,7 +17,7 @@ interface ThreadContext {
17
isNewResponse: boolean
18
sectionRef: React.RefObject<HTMLElement>
19
isAtBottom: boolean
20
- isAtBottomOfSection: boolean // Added this property
+ isAtBottomOfSection: boolean
21
randomChatbot: Chatbot | null
22
isAdminMode: boolean
23
webSearch: boolean
@@ -167,7 +167,7 @@ export function ThreadProvider({ children }: ThreadProviderProps) {
167
isNewResponse,
168
isOpenPopup,
169
isAtBottom: isNearBottom,
170
- isAtBottomOfSection, // Include the new property
+ isAtBottomOfSection,
171
sectionRef,
172
randomChatbot,
173
isAdminMode,
0 commit comments