fixed bugs relating to ui and duplicating conversations.

This commit is contained in:
Joshua
2024-07-09 17:36:21 -06:00
parent 78e7f4b896
commit 097b99e0e6
15 changed files with 352 additions and 62 deletions
@@ -14,11 +14,9 @@ import 'package:cached_network_image/cached_network_image.dart';
class ConversationThreadModel extends FlutterFlowModel<ConversationThreadWidget> {
final formKey = GlobalKey<FormState>();
late PromptBoxModel promptBoxModel;
late Conversation conversation;
Conversation conversation;
void updateConversation() {
conversation = Server.getLoadedConversation();
}
ConversationThreadModel(this.conversation);
@override
void initState(BuildContext context) {