Skip to content

Commit

Permalink
Merge pull request #34095 from VickyStash/ts-migration/reportActionRe…
Browse files Browse the repository at this point in the history
…action-type

[No QA] [TS migration] Follow-up: update ReportActionReaction type
  • Loading branch information
AndrewGable authored Jan 8, 2024
2 parents 3d0aa67 + 79c67b0 commit 347a06e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ type FormattedReaction = {
reactionEmojiName: string;

/** The type of action that's pending */
pendingAction: PendingAction;
pendingAction?: PendingAction;
};

function ReportActionItemEmojiReactions({
Expand Down
2 changes: 1 addition & 1 deletion src/types/onyx/ReportActionReactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type ReportActionReaction = {
users: UsersReactions;

/** Is this action pending? */
pendingAction: OnyxCommon.PendingAction;
pendingAction?: OnyxCommon.PendingAction;
};

type ReportActionReactions = Record<string, ReportActionReaction>;
Expand Down

0 comments on commit 347a06e

Please sign in to comment.