File tree 2 files changed +17
-4
lines changed
frontend/pages/admin/IntegrationsPage/cards/Calendars
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,16 @@ interface ICalendarsFormData {
58
58
apiKeyJson ?: string ;
59
59
}
60
60
61
+ // Used to surface error.message in UI of unknown error type
62
+ type ErrorWithMessage = {
63
+ message : string ;
64
+ [ key : string ] : unknown ;
65
+ } ;
66
+
67
+ const isErrorWithMessage = ( error : unknown ) : error is ErrorWithMessage => {
68
+ return ( error as ErrorWithMessage ) . message !== undefined ;
69
+ } ;
70
+
61
71
const baseClass = "calendars-integration" ;
62
72
63
73
const Calendars = ( ) : JSX . Element => {
@@ -108,8 +118,12 @@ const Calendars = (): JSX.Element => {
108
118
if ( curFormData . apiKeyJson ) {
109
119
try {
110
120
JSON . parse ( curFormData . apiKeyJson ) ;
111
- } catch ( e ) {
112
- errors . apiKeyJson = e . message . toString ( ) ;
121
+ } catch ( e : unknown ) {
122
+ if ( isErrorWithMessage ( e ) ) {
123
+ errors . apiKeyJson = e . message . toString ( ) ;
124
+ } else {
125
+ throw e ;
126
+ }
113
127
}
114
128
}
115
129
return errors ;
Original file line number Diff line number Diff line change 7
7
"jsx" : " react" ,
8
8
"allowSyntheticDefaultImports" : true ,
9
9
"resolveJsonModule" : true ,
10
- "lib" : [" ES2021.String" ],
11
- "useUnknownInCatchVariables" : false
10
+ "lib" : [" ES2021.String" ]
12
11
},
13
12
"include" : [" ./frontend/**/*" ],
14
13
"exclude" : [" node_modules" ],
You can’t perform that action at this time.
0 commit comments