Skip to content

Commit 1a98d0e

Browse files
authored
fix(playstation): Remove option to not fetch prospero dumps from tempest (#104042)
* Remove option to not fetch prospero dumps from tempest
1 parent 3388290 commit 1a98d0e

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

static/app/types/project.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ export type Project = {
9393
stats?: TimeseriesValue[];
9494
subjectPrefix?: string;
9595
symbolSources?: string;
96-
tempestFetchDumps?: boolean;
9796
tempestFetchScreenshots?: boolean;
9897
transactionStats?: TimeseriesValue[];
9998
} & AvatarProject;

static/app/views/settings/project/tempest/configForm.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) {
1616
apiEndpoint={`/projects/${organization.slug}/${project.slug}/`}
1717
initialData={{
1818
tempestFetchScreenshots: project.tempestFetchScreenshots,
19-
tempestFetchDumps: project.tempestFetchDumps,
2019
}}
2120
saveOnBlur
2221
hideFooter
@@ -32,12 +31,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) {
3231
label: t('Attach Screenshots'),
3332
help: t('Attach screenshots to issues.'),
3433
},
35-
{
36-
name: 'tempestFetchDumps',
37-
type: 'boolean',
38-
label: t('Attach Dumps'),
39-
help: t('Attach dumps to issues.'),
40-
},
4134
],
4235
},
4336
]}

0 commit comments

Comments
 (0)