Skip to content

Commit f8c86ed

Browse files
committed
Linting
1 parent 6943cce commit f8c86ed

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/fields/AxisCreator.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ class UnconnectedNewAxisCreator extends Component {
8989

9090
render() {
9191
const icon = <PlusIcon />;
92-
const _ = this.props.localize;
9392
const extraComponent = this.canAddAxis() ? (
9493
<Button variant="no-text" icon={icon} onClick={() => this.updateAxis()} />
9594
) : (
@@ -129,7 +128,7 @@ UnconnectedNewAxisCreator.contextTypes = {
129128

130129
const ConnectedNewAxisCreator = connectToContainer(UnconnectedNewAxisCreator);
131130

132-
export class AxisCreator extends Component {
131+
class AxisCreator extends Component {
133132
render() {
134133
const isFirstTraceOfType =
135134
this.context.data.filter(d => d.type === this.props.container.type)

0 commit comments

Comments
 (0)