X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fresults%2FReportDialog.js;h=b3e528220f8121aa853e8ac684fc78b2595af798;hb=e0925d5b97ab0804222195eb4231c63b33703942;hp=62adf8491c137ee7b8462254a609c62e59c7db72;hpb=d748feb96453d74aeffec648d6f5f68d9ef3b520;p=alttp.git diff --git a/resources/js/components/results/ReportDialog.js b/resources/js/components/results/ReportDialog.js index 62adf84..b3e5282 100644 --- a/resources/js/components/results/ReportDialog.js +++ b/resources/js/components/results/ReportDialog.js @@ -8,9 +8,9 @@ import i18n from '../../i18n'; const ReportDialog = ({ onHide, - participant, round, show, + user, }) => @@ -20,20 +20,20 @@ const ReportDialog = ({ ; ReportDialog.propTypes = { onHide: PropTypes.func, - participant: PropTypes.shape({ - }), round: PropTypes.shape({ }), show: PropTypes.bool, tournament: PropTypes.shape({ }), + user: PropTypes.shape({ + }), }; export default withTranslation()(ReportDialog);