File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ import {
7
7
} from '@remix-run/node'
8
8
import { RemixServer } from '@remix-run/react'
9
9
import * as Sentry from '@sentry/remix'
10
+ import chalk from 'chalk'
10
11
import { isbot } from 'isbot'
11
12
import { renderToPipeableStream } from 'react-dom/server'
12
13
import { getEnv , init } from './utils/env.server.ts'
13
14
import { getInstanceInfo } from './utils/litefs.server.ts'
14
15
import { NonceProvider } from './utils/nonce-provider.ts'
15
16
import { makeTimings } from './utils/timing.server.ts'
16
- import chalk from 'chalk'
17
17
18
18
const ABORT_DELAY = 5000
19
19
@@ -71,10 +71,8 @@ export default async function handleRequest(...args: DocRequestArgs) {
71
71
onShellError : ( err : unknown ) => {
72
72
reject ( err )
73
73
} ,
74
- onError : ( error : unknown ) => {
74
+ onError : ( ) => {
75
75
didError = true
76
-
77
- console . error ( error )
78
76
} ,
79
77
nonce,
80
78
} ,
You can’t perform that action at this time.
0 commit comments