Skip to content

Commit

Permalink
revert unnecessary change
Browse files Browse the repository at this point in the history
  • Loading branch information
wildan-m committed Dec 28, 2024
1 parent 135c677 commit 6f59803
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ShowContextMenuContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import CONST from '@src/CONST';
import type {Report, ReportAction, ReportNameValuePairs} from '@src/types/onyx';

type ShowContextMenuContextProps = {
anchor?: ContextMenuAnchor;
report?: OnyxEntry<Report>;
reportNameValuePairs?: OnyxEntry<ReportNameValuePairs>;
action?: OnyxEntry<ReportAction>;
anchor: ContextMenuAnchor;
report: OnyxEntry<Report>;
reportNameValuePairs: OnyxEntry<ReportNameValuePairs>;
action: OnyxEntry<ReportAction>;
transactionThreadReport?: OnyxEntry<Report>;
checkIfContextMenuActive: () => void;
isDisabled: boolean;
Expand Down

0 comments on commit 6f59803

Please sign in to comment.