Skip to content

Commit 6629e54

Browse files
committed
chore: Add ids to chatbot
1 parent af184c0 commit 6629e54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/FloatingChatBot/FloatingChatBot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const FloatingChatBot = () => {
108108
},
109109
}
110110
return (
111-
<ChatBot flow={flow} settings={settings}></ChatBot>
111+
<ChatBot id="floating-chat-bot" flow={flow} settings={settings}></ChatBot>
112112
);
113113
};
114114

src/components/LandingPageChatBot/LandingPageChatBot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const LandingPageChatBot = () => {
137137
},
138138
}
139139
return (
140-
<ChatBot flow={flow} settings={settings} styles={styles}></ChatBot>
140+
<ChatBot id="landing-page-chat-bot" flow={flow} settings={settings} styles={styles}></ChatBot>
141141
);
142142
};
143143

0 commit comments

Comments
 (0)