Merge branch 'main' into matroska
This commit is contained in:
commit
7fab4ca1ba
34 changed files with 4059 additions and 3874 deletions
|
|
@ -72,7 +72,11 @@ type ClientProviderState = Omit<
|
|||
"changePassword" | "logout" | "setClient"
|
||||
> & { error?: Error };
|
||||
|
||||
export const ClientProvider: FC = ({ children }) => {
|
||||
interface Props {
|
||||
children: JSX.Element;
|
||||
}
|
||||
|
||||
export const ClientProvider: FC<Props> = ({ children }) => {
|
||||
const history = useHistory();
|
||||
const [
|
||||
{ loading, isAuthenticated, isPasswordlessUser, client, userName, error },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue