From f1d32c7292cbaba8c804719bca5670189ee51d74 Mon Sep 17 00:00:00 2001 From: Kathryn Beaty Date: Fri, 27 Sep 2024 09:06:08 -0400 Subject: [PATCH] remove extra Tab definition --- client/src/core/client/ui/components/v2/Tabs/Tab.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/client/src/core/client/ui/components/v2/Tabs/Tab.tsx b/client/src/core/client/ui/components/v2/Tabs/Tab.tsx index 306a42a94d..b42180101e 100644 --- a/client/src/core/client/ui/components/v2/Tabs/Tab.tsx +++ b/client/src/core/client/ui/components/v2/Tabs/Tab.tsx @@ -1,12 +1,9 @@ -import { Localized } from "@fluent/react/compat"; import cn from "classnames"; import React from "react"; import BaseButton from "coral-ui/components/v2/BaseButton"; import { withStyles } from "coral-ui/hocs"; -import AriaInfo from "../AriaInfo"; - import styles from "./Tab.css"; export interface TabProps { @@ -103,14 +100,7 @@ class Tab extends React.Component { title={title} onClick={this.handleTabClick} > - <> - - - Tab: - - - {children} - + {children} );