From f51269b6a3d24e5847165310f1e1c17e0b33c707 Mon Sep 17 00:00:00 2001 From: Camila Sosa Morales Date: Thu, 13 Apr 2023 11:44:55 -0300 Subject: [PATCH] fix: add alchemy keys missinng (#222) * fix: add alchemy keys missinng * style: fix combobox index * Update ui/src/store/features/github/async-thunk/login.ts Co-authored-by: Felipe Mendes * style: remove zindex * chore: remove duplicate toast --------- Co-authored-by: Felipe Mendes --- .github/workflows/fleek-deploy.yaml | 2 ++ ui/src/components/core/combobox/combobox.tsx | 2 +- ui/src/components/core/input/input-file.styles.ts | 1 - ui/src/store/features/github/async-thunk/login.ts | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fleek-deploy.yaml b/.github/workflows/fleek-deploy.yaml index cdf27e5..2561f53 100644 --- a/.github/workflows/fleek-deploy.yaml +++ b/.github/workflows/fleek-deploy.yaml @@ -14,6 +14,8 @@ jobs: env: FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }} FLEEK_PROJECT_ID: ${{ secrets.FLEEK_PROJECT_ID }} + VITE_ALCHEMY_API_KEY: ${{ secrets.VITE_ALCHEMY_API_KEY }} + VITE_ALCHEMY_APP_NAME: ${{ secrets.VITE_ALCHEMY_APP_NAME }} VITE_FIREBASE_API_KEY: ${{ secrets.VITE_FIREBASE_API_KEY }} VITE_FIREBASE_AUTH_DOMAIN: ${{ secrets.VITE_FIREBASE_AUTH_DOMAIN }} VITE_FIREBASE_PROJECT_ID: ${{ secrets.VITE_FIREBASE_PROJECT_ID }} diff --git a/ui/src/components/core/combobox/combobox.tsx b/ui/src/components/core/combobox/combobox.tsx index 9d27074..35cc2e9 100644 --- a/ui/src/components/core/combobox/combobox.tsx +++ b/ui/src/components/core/combobox/combobox.tsx @@ -243,7 +243,7 @@ export const Combobox: React.FC = ({
- + {[...autocompleteItems, ...filteredItems].length === 0 || filteredItems === undefined ? ( diff --git a/ui/src/components/core/input/input-file.styles.ts b/ui/src/components/core/input/input-file.styles.ts index 03fd26a..d246812 100644 --- a/ui/src/components/core/input/input-file.styles.ts +++ b/ui/src/components/core/input/input-file.styles.ts @@ -16,7 +16,6 @@ export abstract class InputFileStyles { transition: 'border-color 0.2s ease-in-out', borderWidth: '$default', borderRadius: '$lg', - zIndex: '$docked', '&:hover': { borderColor: '$gray8', diff --git a/ui/src/store/features/github/async-thunk/login.ts b/ui/src/store/features/github/async-thunk/login.ts index 1db09f4..4b382d1 100644 --- a/ui/src/store/features/github/async-thunk/login.ts +++ b/ui/src/store/features/github/async-thunk/login.ts @@ -45,7 +45,7 @@ export const login = createAsyncThunk( throw Error('Invalid response type'); } } catch (error) { - AppLog.errorToast('Github login failed. Please try again later.'); + AppLog.errorToast('Github login failed. Please try again later.', error); dispatch(githubActions.setState('failed')); } }