File tree 3 files changed +3
-13
lines changed
3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -747,7 +747,7 @@ jobs:
747
747
run : yarn test
748
748
749
749
job_remix_integration_tests :
750
- name : Remix v${{ matrix.remix }} (Node ${{ matrix.node }}) Tests
750
+ name : Remix (Node ${{ matrix.node }}) Tests
751
751
needs : [job_get_metadata, job_build]
752
752
if : needs.job_build.outputs.changed_remix == 'true' || github.event_name != 'pull_request'
753
753
runs-on : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -15,12 +15,7 @@ export * from '@sentry/react';
15
15
// function signature is the same as in the server SDK.
16
16
// See issue: https://github.com/getsentry/sentry-javascript/issues/9594
17
17
/* eslint-disable @typescript-eslint/no-unused-vars */
18
- export async function captureRemixServerException (
19
- err : unknown ,
20
- name : string ,
21
- request : Request ,
22
- isRemixV2 ?: boolean ,
23
- ) : Promise < void > {
18
+ export async function captureRemixServerException ( err : unknown , name : string , request : Request ) : Promise < void > {
24
19
DEBUG_BUILD &&
25
20
logger . warn (
26
21
'`captureRemixServerException` is a server-only function and should not be called in the browser. ' +
Original file line number Diff line number Diff line change @@ -18,12 +18,7 @@ export declare const contextLinesIntegration: typeof clientSdk.contextLinesInteg
18
18
export declare const getDefaultIntegrations : ( options : Options ) => Integration [ ] ;
19
19
export declare const defaultStackParser : StackParser ;
20
20
21
- export declare function captureRemixServerException (
22
- err : unknown ,
23
- name : string ,
24
- request : Request ,
25
- isRemixV2 ?: boolean ,
26
- ) : Promise < void > ;
21
+ export declare function captureRemixServerException ( err : unknown , name : string , request : Request ) : Promise < void > ;
27
22
28
23
// This variable is not a runtime variable but just a type to tell typescript that the methods below can either come
29
24
// from the client SDK or from the server SDK. TypeScript is smart enough to understand that these resolve to the same
You can’t perform that action at this time.
0 commit comments