From a93b05fd6eaee7738904c2d5bfabb12ce9369420 Mon Sep 17 00:00:00 2001 From: Johann Kaspar Lieberwirth <63501587+JohannKaspar@users.noreply.github.com> Date: Thu, 19 Jun 2025 23:42:05 -0700 Subject: [PATCH] Update wording for clarification. Add tooltip. (#4761) * Update wording for clarification. Add tooltip. * Update hint to match deafult style --- .../Sidebar/ImportCollectionLocation/index.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/bruno-app/src/components/Sidebar/ImportCollectionLocation/index.js b/packages/bruno-app/src/components/Sidebar/ImportCollectionLocation/index.js index 7c4e9f83f..15410cbcd 100644 --- a/packages/bruno-app/src/components/Sidebar/ImportCollectionLocation/index.js +++ b/packages/bruno-app/src/components/Sidebar/ImportCollectionLocation/index.js @@ -4,6 +4,8 @@ import { useFormik } from 'formik'; import * as Yup from 'yup'; import { browseDirectory } from 'providers/ReduxStore/slices/collections/actions'; import Modal from 'components/Modal'; +import Help from 'components/Help'; + const ImportCollectionLocation = ({ onClose, handleSubmit, collectionName }) => { const inputRef = useRef(); @@ -54,8 +56,16 @@ const ImportCollectionLocation = ({ onClose, handleSubmit, collectionName }) =>