We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d59b5e0 commit f1d32c7Copy full SHA for f1d32c7
client/src/core/client/ui/components/v2/Tabs/Tab.tsx
@@ -1,12 +1,9 @@
1
-import { Localized } from "@fluent/react/compat";
2
import cn from "classnames";
3
import React from "react";
4
5
import BaseButton from "coral-ui/components/v2/BaseButton";
6
import { withStyles } from "coral-ui/hocs";
7
8
-import AriaInfo from "../AriaInfo";
9
-
10
import styles from "./Tab.css";
11
12
export interface TabProps {
@@ -103,14 +100,7 @@ class Tab extends React.Component<TabProps> {
103
100
title={title}
104
101
onClick={this.handleTabClick}
105
102
>
106
- <>
107
- <AriaInfo>
108
- <Localized id="ui-tabAriaPrefix">
109
- <span>Tab:</span>
110
- </Localized>
111
- </AriaInfo>
112
- {children}
113
- </>
+ {children}
114
</BaseButton>
115
</li>
116
);
0 commit comments