Skip to content

Commit

Permalink
ref(flags): update types allowed for createdBy and createdByType (#83098
Browse files Browse the repository at this point in the history
)

merge before #83054

it looks like we weren't using the `createdBy` or `createdByType` field
anywhere
  • Loading branch information
michellewzhang authored Jan 8, 2025
1 parent 5e45866 commit acb9db8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/app/views/issueDetails/streamline/featureFlagUtils.tsx
Original file line number Diff line number Diff line change
@@ -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<string, any>;
Expand Down

0 comments on commit acb9db8

Please sign in to comment.