diff --git a/static/app/types/project.tsx b/static/app/types/project.tsx index 971e2040b48dfe..0e9b4cb5da5154 100644 --- a/static/app/types/project.tsx +++ b/static/app/types/project.tsx @@ -93,7 +93,6 @@ export type Project = { stats?: TimeseriesValue[]; subjectPrefix?: string; symbolSources?: string; - tempestFetchDumps?: boolean; tempestFetchScreenshots?: boolean; transactionStats?: TimeseriesValue[]; } & AvatarProject; diff --git a/static/app/views/settings/project/tempest/configForm.tsx b/static/app/views/settings/project/tempest/configForm.tsx index 99560aa3d7898d..e4abcf638dfc4c 100644 --- a/static/app/views/settings/project/tempest/configForm.tsx +++ b/static/app/views/settings/project/tempest/configForm.tsx @@ -16,7 +16,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) { apiEndpoint={`/projects/${organization.slug}/${project.slug}/`} initialData={{ tempestFetchScreenshots: project.tempestFetchScreenshots, - tempestFetchDumps: project.tempestFetchDumps, }} saveOnBlur hideFooter @@ -32,12 +31,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) { label: t('Attach Screenshots'), help: t('Attach screenshots to issues.'), }, - { - name: 'tempestFetchDumps', - type: 'boolean', - label: t('Attach Dumps'), - help: t('Attach dumps to issues.'), - }, ], }, ]}