-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix:login failed error message and post direct url (#468)
- Loading branch information
1 parent
eefc380
commit f519b5a
Showing
12 changed files
with
11,953 additions
and
14,993 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
/// <reference types="react" /> | ||
export declare const CrossIcon: () => JSX.Element; | ||
export declare const CrossIcon: () => import("react/jsx-runtime").JSX.Element; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
/// <reference types="react" /> | ||
export declare const GoogleIcon: () => JSX.Element; | ||
export declare const GoogleIcon: () => import("react/jsx-runtime").JSX.Element; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
/// <reference types="react" /> | ||
import { ThemeType } from '../constants/type/theme'; | ||
interface LanguageMenuProps { | ||
theme: ThemeType; | ||
changeLang: (lang: string) => void; | ||
} | ||
export declare const LanguageMenu: ({ theme, changeLang }: LanguageMenuProps) => JSX.Element; | ||
export declare const LanguageMenu: ({ theme, changeLang }: LanguageMenuProps) => import("react/jsx-runtime").JSX.Element; | ||
export {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
/// <reference types="react" /> | ||
import { ThemeType } from '../constants/type/theme'; | ||
interface LoadingSpinnerProps { | ||
message: string; | ||
theme: ThemeType; | ||
} | ||
export declare const LoadingSpinner: ({ message, theme }: LoadingSpinnerProps) => JSX.Element; | ||
export declare const LoadingSpinner: ({ message, theme }: LoadingSpinnerProps) => import("react/jsx-runtime").JSX.Element; | ||
export {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
/// <reference types="react" /> | ||
import { WithTranslation } from "react-i18next"; | ||
interface Props extends WithTranslation { | ||
isModalOpen: boolean; | ||
closeModal: () => void; | ||
} | ||
declare const SignInModal: ({ isModalOpen, closeModal, t }: Props) => JSX.Element; | ||
declare const SignInModal: ({ isModalOpen, closeModal, t }: Props) => import("react/jsx-runtime").JSX.Element; | ||
export default SignInModal; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
/// <reference types="react" /> | ||
import { ThemeType } from '../constants/type/theme'; | ||
interface ThemeToggleProps { | ||
theme: ThemeType; | ||
setTheme: (theme: ThemeType) => void; | ||
} | ||
export declare const ThemeToggle: ({ theme, setTheme }: ThemeToggleProps) => JSX.Element; | ||
export declare const ThemeToggle: ({ theme, setTheme }: ThemeToggleProps) => import("react/jsx-runtime").JSX.Element; | ||
export {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
/// <reference types="react" /> | ||
export declare const Logo: () => JSX.Element; | ||
export declare const LogoJp: () => JSX.Element; | ||
export declare const SmallLogo: () => JSX.Element; | ||
export declare const SmallLogoJp: () => JSX.Element; | ||
export declare const Logo: () => import("react/jsx-runtime").JSX.Element; | ||
export declare const LogoJp: () => import("react/jsx-runtime").JSX.Element; | ||
export declare const SmallLogo: () => import("react/jsx-runtime").JSX.Element; | ||
export declare const SmallLogoJp: () => import("react/jsx-runtime").JSX.Element; |
Oops, something went wrong.