]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/SeedDialog.js
round titles
[alttp.git] / resources / js / components / rounds / SeedDialog.js
index e181b64b132157f58f5d2460f21dc4abd1e99ac2..2ee36588bb2a21fe617bc796a08f0320ac686dec 100644 (file)
@@ -8,7 +8,6 @@ import i18n from '../../i18n';
 
 const SeedDialog = ({
        onHide,
-       participant,
        round,
        show,
 }) =>
@@ -20,15 +19,12 @@ const SeedDialog = ({
        </Modal.Header>
        <SeedForm
                onCancel={onHide}
-               participant={participant}
                round={round}
        />
 </Modal>;
 
 SeedDialog.propTypes = {
        onHide: PropTypes.func,
-       participant: PropTypes.shape({
-       }),
        round: PropTypes.shape({
        }),
        show: PropTypes.bool,