Skip to content

Commit 29981cd

Browse files
committed
Prevent type collision
1 parent 550154a commit 29981cd

File tree

1 file changed

+2
-2
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors._index

1 file changed

+2
-2
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors._index/route.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import {
4444
type ErrorGroup,
4545
type ErrorOccurrenceActivity,
4646
type ErrorOccurrences,
47-
type ErrorsList,
47+
type ErrorsList as ErrorsListData,
4848
} from "~/presenters/v3/ErrorsListPresenter.server";
4949
import { logsClickhouseClient } from "~/services/clickhouseInstance.server";
5050
import { getCurrentPlan } from "~/services/platform.v3.server";
@@ -224,7 +224,7 @@ function FiltersBar({
224224
defaultPeriod,
225225
retentionLimitDays,
226226
}: {
227-
list?: ErrorsList;
227+
list?: ErrorsListData;
228228
defaultPeriod?: string;
229229
retentionLimitDays: number;
230230
}) {

0 commit comments

Comments
 (0)