From acb9db807385c452b9563c35317ddd04fc8b1086 Mon Sep 17 00:00:00 2001 From: Michelle Zhang <56095982+michellewzhang@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:14:12 -0800 Subject: [PATCH] ref(flags): update types allowed for createdBy and createdByType (#83098) merge before https://github.com/getsentry/sentry/pull/83054 it looks like we weren't using the `createdBy` or `createdByType` field anywhere --- static/app/views/issueDetails/streamline/featureFlagUtils.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/app/views/issueDetails/streamline/featureFlagUtils.tsx b/static/app/views/issueDetails/streamline/featureFlagUtils.tsx index a00a9f24738b82..ab1d0b5eb03543 100644 --- a/static/app/views/issueDetails/streamline/featureFlagUtils.tsx +++ b/static/app/views/issueDetails/streamline/featureFlagUtils.tsx @@ -1,8 +1,8 @@ export type RawFlag = { action: string; createdAt: string; - createdBy: string; - createdByType: string; + createdBy: string | null | undefined; + createdByType: string | null | undefined; flag: string; id: number; tags: Record;