File tree Expand file tree Collapse file tree
test-app-frontend/src/App Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ export interface SavedViewsActions {
125125 updateSavedView : (
126126 savedViewId : string ,
127127 savedView : Partial < WriteableSavedViewProperties > ,
128- savedViewData ?: SavedViewData | undefined ,
128+ savedViewData ?: SavedViewData ,
129129 ) => Promise < void > ;
130130
131131 /**
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ function InternalAuthorizationProvider(props: AuthorizationProviderProps & { cli
102102 const handleAccessTokenExpiring = async ( ) => {
103103 try {
104104 await userManager . signinSilent ( ) ;
105- } catch ( error ) {
105+ } catch {
106106 toaster . informational (
107107 < SignInPopupPrompt text = "Access token is expiring." onClick = { signIn } /> ,
108108 { type : "persisting" , hasCloseButton : true } ,
@@ -410,7 +410,7 @@ export function SignInSilent(): ReactElement {
410410 }
411411
412412 await userManager . signinSilent ( ) ;
413- } catch ( error ) {
413+ } catch {
414414 if ( disposed ) {
415415 return ;
416416 }
You can’t perform that action at this time.
0 commit comments