File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -536,6 +536,7 @@ export function Component() {
536
536
await onSubmit ( values )
537
537
} catch ( e ) {
538
538
if ( e !== ABORT_ERROR ) {
539
+ console . error ( e )
539
540
setModalError ( 'Something went wrong. Please try again.' )
540
541
}
541
542
cancelEverything ( )
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ export const handlers = makeHandlers({
218
218
const disk = lookup . disk ( { ...path , ...query } )
219
219
const diskImport = db . diskBulkImportState . get ( disk . id )
220
220
if ( ! diskImport ) throw notFoundErr ( `disk import for disk '${ disk . id } '` )
221
- await delay ( 1000 ) // slow it down for the tests
221
+ await delay ( 2000 ) // slow it down for the tests
222
222
// if (Math.random() < 0.01) throw 400
223
223
diskImport . blocks [ body . offset ] = true
224
224
return 204
You can’t perform that action at this time.
0 commit comments