From 7a3e97631e391c0a48c11cc10a14c4e1ab9542c4 Mon Sep 17 00:00:00 2001 From: Andrew Pasquale Date: Wed, 11 Sep 2024 09:49:21 -0400 Subject: [PATCH] Add questions should stand alone prompt. --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index ea63f22..9221aeb 100644 --- a/src/App.js +++ b/src/App.js @@ -35,7 +35,7 @@ const MyChatBot = (props) => { if (props.welcome !== undefined) { welcome = props.welcome; } - let prompt = 'What would you like to know about ACCESS?' + let prompt = 'Questions should stand alone and not refer to previous ones.' if (props.prompt !== undefined) { prompt = props.prompt; }