diff --git a/ui/README.md b/ui/README.md index 6b1da98..33f0446 100644 --- a/ui/README.md +++ b/ui/README.md @@ -24,6 +24,12 @@ To run the UI localy follow the steps: $ yarn ``` + This also will generate the `.graphclient` folder. Every time you do a change on the queries files, you'll have to build again that folder, to do it run: + + ```bash + $ yarn graphclient build + ``` + 3. To use ConnecKit is neccessary get an [Alchemy ID](https://alchemy.com/), so create an App and get the credentials. Then set the following .env file ```bash @@ -45,13 +51,7 @@ To run the UI localy follow the steps: Get them from the project settings on the firebase dashboard. Read [this article](https://support.google.com/firebase/answer/7015592?hl=en#zippy=%2Cin-this-article) to know how to get your porject config -4. Build the queries to run the project: - - ```bash - $ yarn graphclient build - ``` - -5. Start the local server running the app: +4. Start the local server running the app: ```bash $ yarn dev diff --git a/ui/src/components/core/combobox/combobox.tsx b/ui/src/components/core/combobox/combobox.tsx index e688b18..8ba2371 100644 --- a/ui/src/components/core/combobox/combobox.tsx +++ b/ui/src/components/core/combobox/combobox.tsx @@ -45,8 +45,10 @@ const ComboboxInput = ({ /> selectedValue.label} onChange={handleInputChange} diff --git a/ui/src/components/core/combobox/dropdown.tsx b/ui/src/components/core/combobox/dropdown.tsx index 81d001f..976c6cf 100644 --- a/ui/src/components/core/combobox/dropdown.tsx +++ b/ui/src/components/core/combobox/dropdown.tsx @@ -52,8 +52,10 @@ type DropdownButtonProps = { const DropdownButton = ({ selectedValue, open }: DropdownButtonProps) => (