diff --git a/js/components/EditableMatchTable.js b/js/components/EditableMatchTable.js
index 2589354..9279fb4 100644
--- a/js/components/EditableMatchTable.js
+++ b/js/components/EditableMatchTable.js
@@ -1,5 +1,5 @@
import React from 'react';
-import {Button, Input, InputGroup, InputGroupAddon, Table} from 'reactstrap';
+import {Button, Input, InputGroup, Table} from 'reactstrap';
export function EditableMatchTable(props) {
return (
@@ -49,12 +49,10 @@ class ScoreInput extends React.Component {
render() {
return (
-
+
-
+
);
}
}
diff --git a/js/components/EditableStringList.js b/js/components/EditableStringList.js
index e161c73..acde336 100644
--- a/js/components/EditableStringList.js
+++ b/js/components/EditableStringList.js
@@ -1,6 +1,6 @@
import React from 'react';
import {
- Alert, Button, Card, CardBody, CardTitle, Input, InputGroup, InputGroupAddon
+ Alert, Button, Card, CardBody, CardTitle, Input, InputGroup
} from 'reactstrap';
export default class EditableStringList extends React.Component {
@@ -231,10 +231,8 @@ class StringInput extends React.Component {
return false;
}
}}/>
-
-
-
+
);
}
diff --git a/js/components/NumericInput.js b/js/components/NumericInput.js
index f49c841..5078058 100644
--- a/js/components/NumericInput.js
+++ b/js/components/NumericInput.js
@@ -1,20 +1,16 @@
import React from 'react';
import PropTypes from 'prop-types';
-import {Button, InputGroup, InputGroupAddon, Input} from 'reactstrap';
+import {Button, InputGroup, Input} from 'reactstrap';
export default class NumericInput extends React.Component {
render() {
return (
-
-
-
+
-
-
-
+
);
}
}
diff --git a/pages/profile.js b/pages/profile.js
index 2c261bd..8708e67 100644
--- a/pages/profile.js
+++ b/pages/profile.js
@@ -1,6 +1,6 @@
import Head from 'next/head';
import React, {Component} from 'react';
-import {Button, Container, Form, Input, InputGroup, InputGroupAddon, Table} from 'reactstrap';
+import {Button, Container, Form, Input, InputGroup, Table} from 'reactstrap';
import {TurniereNavigation} from '../js/components/Navigation';
import {BigImage} from '../js/components/BigImage';
@@ -87,9 +87,7 @@ class NewMailAddressInput extends Component {
-
-
-
+
);
}