Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion static/app/types/project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ export type Project = {
stats?: TimeseriesValue[];
subjectPrefix?: string;
symbolSources?: string;
tempestFetchDumps?: boolean;
tempestFetchScreenshots?: boolean;
transactionStats?: TimeseriesValue[];
} & AvatarProject;
Expand Down
7 changes: 0 additions & 7 deletions static/app/views/settings/project/tempest/configForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.'),
},
],
},
]}
Expand Down
Loading