diff --git a/src/components/AppLayout/AccountSwitcher/index.tsx b/src/components/AppLayout/AccountSwitcher/index.tsx index d32b5154..b817c3f5 100644 --- a/src/components/AppLayout/AccountSwitcher/index.tsx +++ b/src/components/AppLayout/AccountSwitcher/index.tsx @@ -27,6 +27,10 @@ type AccountSwitcherProps = { buttonClassName?: string; children?: ReactElement[]; isDisabled?: boolean; + tabsLabels: { + demo: string; + real: string; + }; }; export const AccountSwitcher = ({ @@ -34,6 +38,7 @@ export const AccountSwitcher = ({ activeAccount, isDisabled = false, buttonClassName, + tabsLabels, }: AccountSwitcherProps) => { const [isOpen, setIsOpen] = useState(false); const ref = useRef(null); @@ -87,8 +92,8 @@ export const AccountSwitcher = ({ @@ -110,8 +115,8 @@ export const AccountSwitcher = ({