diff --git a/packages/odyssey-react-mui/src/Typography.tsx b/packages/odyssey-react-mui/src/Typography.tsx
index 3c4ddb11f0..eb70e636cd 100644
--- a/packages/odyssey-react-mui/src/Typography.tsx
+++ b/packages/odyssey-react-mui/src/Typography.tsx
@@ -14,9 +14,8 @@ import {
Typography as MuiTypography,
TypographyProps as MuiTypographyProps,
} from "@mui/material";
-import { ElementType, ReactNode, memo, useCallback, useMemo } from "react";
+import { ElementType, ReactNode, memo, useMemo } from "react";
import { SeleniumProps } from "./SeleniumProps";
-import { MuiPropsContext } from "./MuiPropsContext";
export type TypographyVariantValue =
| "h1"
@@ -108,34 +107,17 @@ const Typography = ({
return componentProp;
}, [componentProp, variant]);
- const renderTypography = useCallback(
- (muiProps) => (
-
- ),
- [
- ariaDescribedBy,
- ariaLabel,
- ariaLabelledBy,
- children,
- color,
- component,
- testId,
- variant,
- ]
- );
-
return (
- {renderTypography}
+
);
};
diff --git a/packages/odyssey-storybook/src/components/odyssey-mui/Tooltip/Tooltip.stories.tsx b/packages/odyssey-storybook/src/components/odyssey-mui/Tooltip/Tooltip.stories.tsx
index 98e34f9a92..0cefbfe757 100644
--- a/packages/odyssey-storybook/src/components/odyssey-mui/Tooltip/Tooltip.stories.tsx
+++ b/packages/odyssey-storybook/src/components/odyssey-mui/Tooltip/Tooltip.stories.tsx
@@ -13,7 +13,6 @@
import { Meta, StoryObj } from "@storybook/react";
import {
Button,
- Paragraph,
Status,
Tag,
Tooltip,
@@ -148,16 +147,6 @@ export const IconButton: StoryObj = {
},
};
-export const ParagraphWrapper: StoryObj = {
- ...Template,
- args: {
- children: ,
- ariaType: "label",
- placement: "top",
- text: "This is a tooltip on body copy.",
- },
-};
-
export const StatusWrapper: StoryObj = {
...Template,
args: {