From 9aca2925e74d9739f88bf7000d445f6b98493345 Mon Sep 17 00:00:00 2001 From: Dominic Elm Date: Thu, 1 Aug 2024 17:31:18 +0200 Subject: [PATCH] fix: typo in example prompt --- packages/bolt/app/components/chat/BaseChat.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bolt/app/components/chat/BaseChat.tsx b/packages/bolt/app/components/chat/BaseChat.tsx index 76f1b8f..5bbb77e 100644 --- a/packages/bolt/app/components/chat/BaseChat.tsx +++ b/packages/bolt/app/components/chat/BaseChat.tsx @@ -29,7 +29,7 @@ const EXAMPLE_PROMPTS = [ { text: 'Build a simple blog using Astro' }, { text: 'Create a cookie consent form using Material UI' }, { text: 'Make a space invaders game' }, - { text: 'How do I can center a div?' }, + { text: 'How do I center a div?' }, ]; const TEXTAREA_MIN_HEIGHT = 72;