diff --git a/libs/oeth/history/src/components/APYContainer.tsx b/libs/oeth/history/src/components/APYContainer.tsx
index 3b5e28f5e..a78598026 100644
--- a/libs/oeth/history/src/components/APYContainer.tsx
+++ b/libs/oeth/history/src/components/APYContainer.tsx
@@ -53,7 +53,7 @@ export function APYContainer() {
- {intl.formatMessage({ defaultMessage: 'OETH transactions' })}
+ {intl.formatMessage({ defaultMessage: 'OETH Transactions' })}
-
+
{intl.formatMessage({ defaultMessage: 'Price Tolerance' })}
+
diff --git a/libs/oeth/swap/src/components/ApyHeader.tsx b/libs/oeth/swap/src/components/ApyHeader.tsx
index 04c01e999..d2bffbfcc 100644
--- a/libs/oeth/swap/src/components/ApyHeader.tsx
+++ b/libs/oeth/swap/src/components/ApyHeader.tsx
@@ -94,19 +94,21 @@ export const ApyHeader = (props: StackProps) => {
}}
MenuListProps={{ dense: true }}
>
- {trailingOptions.map((t) => (
-
- ))}
+ {trailingOptions
+ .filter((t) => t.value !== trailing.value)
+ .map((t) => (
+
+ ))}
diff --git a/libs/shared/components/src/InfoTooltip/index.tsx b/libs/shared/components/src/InfoTooltip/index.tsx
index c625bb3c9..94bc25eb7 100644
--- a/libs/shared/components/src/InfoTooltip/index.tsx
+++ b/libs/shared/components/src/InfoTooltip/index.tsx
@@ -1,15 +1,18 @@
import { Box, Tooltip, Typography } from '@mui/material';
+import type { BoxProps } from '@mui/material';
+
export type InfoTooltipProps = {
tooltipLabel: string;
iconSize?: number;
iconColor?: string;
-};
+} & BoxProps;
export function InfoTooltip({
tooltipLabel,
iconSize = 12,
iconColor = 'text.secondary',
+ ...rest
}: InfoTooltipProps) {
return (
theme.typography.pxToRem(iconSize),
height: (theme) => theme.typography.pxToRem(iconSize),
color: iconColor,
+
+ ...rest?.sx,
}}
>