Skip to content

Commit bf7c52d

Browse files
🛠️ apply pre-commit fixes
1 parent 9d61aff commit bf7c52d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

static/app/views/projectDetail/projectDetail.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default function ProjectDetail({router, location, organization}: Props) {
8282
}, [hasTransactions, hasSessions]);
8383

8484
const onRetryProjects = useCallback(() => {
85-
fetchOrganizationDetails(api, params.orgId!);
85+
fetchOrganizationDetails(api, params.orgId);
8686
}, [api, params.orgId]);
8787

8888
const handleSearch = useCallback(
@@ -263,14 +263,14 @@ export default function ProjectDetail({router, location, organization}: Props) {
263263
<Feature features="incidents" organization={organization}>
264264
<ProjectLatestAlerts
265265
organization={organization}
266-
projectSlug={params.projectId!}
266+
projectSlug={params.projectId}
267267
location={location}
268268
isProjectStabilized={isProjectStabilized}
269269
/>
270270
</Feature>
271271
<ProjectLatestReleases
272272
organization={organization}
273-
projectSlug={params.projectId!}
273+
projectSlug={params.projectId}
274274
location={location}
275275
isProjectStabilized={isProjectStabilized}
276276
project={project}

0 commit comments

Comments
 (0)