From 4cc26605515ed96e88e5281f6cc61cc4bc6cf51d Mon Sep 17 00:00:00 2001 From: Felix Hamme Date: Mon, 17 Jun 2019 19:40:53 +0200 Subject: [PATCH] Code style fixes --- js/components/WarningPopup.js | 2 +- pages/create.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/components/WarningPopup.js b/js/components/WarningPopup.js index a1196cc..77729dc 100644 --- a/js/components/WarningPopup.js +++ b/js/components/WarningPopup.js @@ -20,4 +20,4 @@ export class WarningPopup extends React.Component { WarningPopup.propTypes = { text: PropTypes.string.isRequired, shown: PropTypes.bool.isRequired -} \ No newline at end of file +}; diff --git a/pages/create.js b/pages/create.js index acbedb8..1e8f678 100644 --- a/pages/create.js +++ b/pages/create.js @@ -8,7 +8,7 @@ import {TurniereNavigation} from '../js/components/Navigation'; import {Footer} from '../js/components/Footer'; import EditableStringList from '../js/components/EditableStringList'; import {createTournament} from '../js/api'; -import {WarningPopup} from '../js/components/WarningPopup' +import {WarningPopup} from '../js/components/WarningPopup'; import '../static/css/everypage.css'; import RequireLogin from '../js/components/RequireLogin';