From 2f1bb27360261f807c0a603c20d5ceaa9106f36e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Tue, 20 Feb 2024 17:26:33 +0000 Subject: [PATCH] fixed capitalisazion --- lib/view/pages/talk/components/chatTextfield.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view/pages/talk/components/chatTextfield.dart b/lib/view/pages/talk/components/chatTextfield.dart index 35fe84f..9dc14e7 100644 --- a/lib/view/pages/talk/components/chatTextfield.dart +++ b/lib/view/pages/talk/components/chatTextfield.dart @@ -152,7 +152,7 @@ class _ChatTextfieldState extends State { ), onChanged: (String text) { if(text.trim().toLowerCase() == "marbot marbot marbot") { - var newText = "Roboter sind cool und so, aber marbots sind besser!"; + var newText = "Roboter sind cool und so, aber Marbots sind besser!"; _textBoxController.text = newText; text = newText; }