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 <zo.fmendes@gmail.com>

* style: remove zindex

* chore: remove duplicate toast

---------

Co-authored-by: Felipe Mendes <zo.fmendes@gmail.com>
This commit is contained in:
Camila Sosa Morales 2023-04-13 11:44:55 -03:00 committed by GitHub
parent c44efc9c53
commit f51269b6a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View File

@ -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 }}

View File

@ -243,7 +243,7 @@ export const Combobox: React.FC<ComboboxProps> = ({
<div className="absolute max-h-60 mt-2 w-full z-10 overflow-auto rounded-xl border-solid border-slate6 border bg-black pt-2 px-3 text-base focus:outline-none sm:text-sm">
<ComboboxInput onChange={handleInputChange} onBlur={onBlur} />
<Separator />
<ComboboxLib.Options className="mt-1">
<ComboboxLib.Options className="mt-1 z-20">
{[...autocompleteItems, ...filteredItems].length === 0 ||
filteredItems === undefined ? (
<NoResults />

View File

@ -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',

View File

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