Skip to content

Commit

Permalink
Merge pull request #5038 from mozilla/dependabot/npm_and_yarn/react-a…
Browse files Browse the repository at this point in the history
…ria-3.34.3

Bump react-aria from 3.34.1 to 3.34.3
  • Loading branch information
groovecoder authored Sep 26, 2024
2 parents 2e57616 + 00109ca commit 4cde843
Show file tree
Hide file tree
Showing 3 changed files with 901 additions and 904 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"cldr-localenames-modern": "^45.0.0",
"msw": "^2.4.9",
"react": "18.3.1",
"react-aria": "^3.34.1",
"react-aria": "^3.34.3",
"react-confetti": "^6.1.0",
"react-dom": "18.3.1",
"react-ga": "^3.3.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ const AliasTypeMenuPopup = (props: AliasTypeMenuPopupProps) => {
// TODO: Fix the typing (likely: report to react-aria that the type does not include an isDisabled prop)
item={item as unknown as AliasTypeMenuItemProps["item"]}
state={popupState}
onAction={props.onAction}
onClose={props.onClose}
/>
))}
Expand All @@ -362,7 +361,6 @@ type AliasTypeMenuItemProps = {
rendered?: ReactNode;
};
state: TreeState<unknown>;
onAction: AriaMenuItemProps["onAction"];
onClose: AriaMenuItemProps["onClose"];
};

Expand All @@ -372,7 +370,6 @@ const AliasTypeMenuItem = (props: AliasTypeMenuItemProps) => {
{
key: props.item.key,
isDisabled: props.item.isDisabled,
onAction: props.onAction,
onClose: props.onClose,
},
props.state,
Expand Down
Loading

0 comments on commit 4cde843

Please sign in to comment.