Upgrade material ui, react and other ui dependencies (#203)

This commit is contained in:
rjwats
2020-11-10 22:30:19 +00:00
committed by GitHub
parent d9a3aac37f
commit 7aed5c0eb2
3 changed files with 996 additions and 856 deletions

View File

@ -9,7 +9,7 @@ import { AuthenticationContext, Me } from './AuthenticationContext';
import FullScreenLoading from '../components/FullScreenLoading';
import { withFeatures, WithFeaturesProps } from '../features/FeaturesContext';
export const decodeMeJWT = (accessToken: string): Me => jwtDecode(accessToken);
export const decodeMeJWT = (accessToken: string): Me => jwtDecode(accessToken) as Me;
interface AuthenticationWrapperState {
context: AuthenticationContext;