@@ -117,7 +117,7 @@ const Calendars = (): JSX.Element => {
117
117
[ formData ]
118
118
) ;
119
119
120
- const onFormSubmit = ( evt : React . MouseEvent < HTMLFormElement > ) => {
120
+ const onFormSubmit = async ( evt : React . MouseEvent < HTMLFormElement > ) => {
121
121
setIsUpdatingSettings ( true ) ;
122
122
123
123
evt . preventDefault ( ) ;
@@ -140,21 +140,18 @@ const Calendars = (): JSX.Element => {
140
140
google_calendar : formDataToSubmit ,
141
141
} ;
142
142
143
- configAPI
144
- . update ( { integrations : destination } )
145
- . then ( ( ) => {
146
- renderFlash (
147
- "success" ,
148
- < > Successfully saved calendar integration settings</ >
149
- ) ;
150
- refetchConfig ( ) ;
151
- } )
152
- . catch ( ( ) => {
153
- renderFlash ( "error" , < > Could not save calendar integration settings</ > ) ;
154
- } )
155
- . finally ( ( ) => {
156
- setIsUpdatingSettings ( false ) ;
157
- } ) ;
143
+ try {
144
+ await configAPI . update ( { integrations : destination } ) ;
145
+ renderFlash (
146
+ "success" ,
147
+ "Successfully saved calendar integration settings"
148
+ ) ;
149
+ refetchConfig ( ) ;
150
+ } catch ( e ) {
151
+ renderFlash ( "error" , "Could not save calendar integration settings" ) ;
152
+ } finally {
153
+ setIsUpdatingSettings ( false ) ;
154
+ }
158
155
} ;
159
156
160
157
const renderOauthLabel = ( ) => {
@@ -172,20 +169,18 @@ const Calendars = (): JSX.Element => {
172
169
} ;
173
170
174
171
return (
175
- < >
176
- < span className = { `${ baseClass } __oauth-scopes-copy-icon-wrapper` } >
177
- < Button
178
- variant = "unstyled"
179
- className = { `${ baseClass } __oauth-scopes-copy-icon` }
180
- onClick = { onCopyOauthScopes }
181
- >
182
- < Icon name = "copy" />
183
- </ Button >
184
- { copyMessage && (
185
- < span className = { `${ baseClass } __copy-message` } > { copyMessage } </ span >
186
- ) }
187
- </ span >
188
- </ >
172
+ < span className = { `${ baseClass } __oauth-scopes-copy-icon-wrapper` } >
173
+ < Button
174
+ variant = "unstyled"
175
+ className = { `${ baseClass } __oauth-scopes-copy-icon` }
176
+ onClick = { onCopyOauthScopes }
177
+ >
178
+ < Icon name = "copy" />
179
+ </ Button >
180
+ { copyMessage && (
181
+ < span className = { `${ baseClass } __copy-message` } > { copyMessage } </ span >
182
+ ) }
183
+ </ span >
189
184
) ;
190
185
} ;
191
186
@@ -281,7 +276,7 @@ const Calendars = (): JSX.Element => {
281
276
}
282
277
placeholder = { API_KEY_JSON_PLACEHOLDER }
283
278
ignore1password
284
- inputClassName = { `${ baseClass } __configuration--api -key-json` }
279
+ inputClassName = { `${ baseClass } __api -key-json` }
285
280
/>
286
281
< InputField
287
282
label = "Primary domain"
0 commit comments