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:
parent
c44efc9c53
commit
f51269b6a3
|
|
@ -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 }}
|
||||
|
|
|
|||
|
|
@ -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 />
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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'));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue