From 640692abc733b23d05aaa96e24c4eaf98ee52971 Mon Sep 17 00:00:00 2001 From: Sebastien Dionne Date: Sat, 7 Oct 2023 14:59:55 -0400 Subject: [PATCH] typo in the error message there was a little typo --- packages/bruno-app/src/components/Sidebar/NewRequest/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-app/src/components/Sidebar/NewRequest/index.js b/packages/bruno-app/src/components/Sidebar/NewRequest/index.js index f5753ace..a98a77ae 100644 --- a/packages/bruno-app/src/components/Sidebar/NewRequest/index.js +++ b/packages/bruno-app/src/components/Sidebar/NewRequest/index.js @@ -25,7 +25,7 @@ const NewRequest = ({ collection, item, isEphemeral, onClose }) => { }, validationSchema: Yup.object({ requestName: Yup.string() - .min(1, 'must be atleast 1 characters') + .min(1, 'must be at least 1 characters') .required('name is required') .test({ name: 'requestName',