You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/debugSymbolConfig/debugSymbolConfig.tsx
+33-32Lines changed: 33 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -1,48 +1,49 @@
1
1
'use client';
2
2
3
+
import{useState}from'react';
3
4
importstyledfrom'@emotion/styled';
4
5
import{Checkbox}from'@radix-ui/themes';
5
-
import{useState}from'react';
6
6
7
7
typeDebugSymbolConfigProps={
8
8
defaultOptions?: string[];
9
9
};
10
10
11
11
constoptions=[
12
12
{
13
-
id: 'dsym',
14
-
name: 'dSYM',
13
+
id: 'dsym',
14
+
name: 'dSYM',
15
15
configLine: '',
16
-
comment: 'Debug symbols (dSYM) are uploaded by default. You can disable this by setting upload_debug_symbols: false',
17
-
required: true
16
+
comment:
17
+
'Debug symbols (dSYM) are uploaded by default. You can disable this by setting upload_debug_symbols: false',
18
+
required: true,
18
19
},
19
20
{
20
-
id: 'source-maps',
21
-
name: 'Source Maps',
21
+
id: 'source-maps',
22
+
name: 'Source Maps',
22
23
configLine: ' upload_source_maps: true\n',
23
-
comment: 'Enabling this option allows Sentry to provide readable stack traces\n # for Flutter web apps.',
24
-
required: false
24
+
comment:
25
+
'Enabling this option allows Sentry to provide readable stack traces\n # for Flutter web apps.',
26
+
required: false,
25
27
},
26
28
{
27
-
id: 'source-context',
28
-
name: 'Source Context',
29
+
id: 'source-context',
30
+
name: 'Source Context',
29
31
configLine: ' upload_sources: true\n',
30
-
comment: 'Source context uploads your source files to Sentry, allowing you to see\n # the actual code around the location of errors. \n # This only uploads Dart/Flutter code, not native code.',
31
-
required: false
32
+
comment:
33
+
'Source context uploads your source files to Sentry, allowing you to see\n # the actual code around the location of errors. \n # This only uploads Dart/Flutter code, not native code.',
0 commit comments