diff --git a/src/__tests__/__snapshots__/exports.test.ts.snap b/src/__tests__/__snapshots__/exports.test.ts.snap
index bae5cfd5a56..a0fbe241750 100644
--- a/src/__tests__/__snapshots__/exports.test.ts.snap
+++ b/src/__tests__/__snapshots__/exports.test.ts.snap
@@ -38,7 +38,6 @@ exports[`@primer/react should not update exports without a semver change 1`] = `
"LabelGroup",
"Link",
"LinkButton",
- "MenuContext",
"NavList",
"Octicon",
"Overlay",
diff --git a/src/__tests__/deprecated/InputField.test.tsx b/src/__tests__/deprecated/InputField.test.tsx
index 5a6fcae7cef..71e8d6c0273 100644
--- a/src/__tests__/deprecated/InputField.test.tsx
+++ b/src/__tests__/deprecated/InputField.test.tsx
@@ -6,7 +6,6 @@ import InputField from '../../deprecated/InputField'
expect.extend(toHaveNoViolations)
const TEXTINPUTFIELD_LABEL_TEXT = 'Name'
-const TEXTINPUTFIELD_LABEL_TEXT_WITH_ASTERISK = 'Name *'
const TEXTINPUTFIELD_CAPTION_TEXT = 'Hint: your first name'
const TEXTINPUTFIELD_SUCCESS_TEXT = 'This name is valid'
const TEXTINPUTFIELD_ERROR_TEXT = 'This name is invalid'
@@ -67,7 +66,7 @@ describe('InputField', () => {
,
)
- const input = getByRole('textbox', {name: TEXTINPUTFIELD_LABEL_TEXT_WITH_ASTERISK})
+ const input = getByRole('textbox', {name: TEXTINPUTFIELD_LABEL_TEXT})
expect(input.getAttribute('required')).not.toBeNull()
})
diff --git a/src/deprecated/ActionList/Item.tsx b/src/deprecated/ActionList/Item.tsx
index 7efc7e7da0e..755a78be028 100644
--- a/src/deprecated/ActionList/Item.tsx
+++ b/src/deprecated/ActionList/Item.tsx
@@ -465,8 +465,7 @@ export const Item = React.forwardRef((itemProps, ref) => {
{/* backward compatibility: prefer TrailingVisual but fallback to TrailingIcon */}
{TrailingVisual ? (
- {/* @ts-ignore how to check the type of Icons ? */}
- {typeof TrailingVisual === 'object' ? : TrailingVisual}
+ {typeof TrailingVisual === 'function' ? : TrailingVisual}
) : TrailingIcon || trailingText ? (
diff --git a/src/index.ts b/src/index.ts
index 344fa49e60e..7e0c5596576 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -49,7 +49,7 @@ export type {RadioProps} from './Radio'
export {ActionList} from './ActionList'
export type {
ActionListProps,
- ActionListHeadingProps,
+ ActionListGroupProps,
ActionListItemProps,
ActionListLinkItemProps,
ActionListDividerProps,
@@ -57,7 +57,7 @@ export type {
ActionListLeadingVisualProps,
ActionListTrailingVisualProps,
} from './ActionList'
-export {ActionMenu, MenuContext} from './ActionMenu'
+export {ActionMenu} from './ActionMenu'
export type {ActionMenuProps, ActionMenuAnchorProps, ActionMenuButtonProps} from './ActionMenu'
export {AnchoredOverlay} from './AnchoredOverlay'
export type {AnchoredOverlayProps} from './AnchoredOverlay'
diff --git a/src/internal/components/InputLabel.tsx b/src/internal/components/InputLabel.tsx
index 1117c0f79bf..2b26755bb3c 100644
--- a/src/internal/components/InputLabel.tsx
+++ b/src/internal/components/InputLabel.tsx
@@ -55,7 +55,7 @@ const InputLabel: React.FC> = ({
{required ? (
{children}
- *
+ *
) : (
children