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')); } }