]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/pages/Tournament.js
add helmet
[alttp.git] / resources / js / components / pages / Tournament.js
index 061db2208a8a67ba35ddd05ff9fced3afd1323bf..7abd5e437b25bf8454e49810d9a2e12cde88a30a 100644 (file)
@@ -1,5 +1,6 @@
 import axios from 'axios';
 import React, { useEffect, useState } from 'react';
+import { Helmet } from 'react-helmet';
 import { useParams } from 'react-router-dom';
 
 import ErrorBoundary from '../common/ErrorBoundary';
@@ -34,7 +35,6 @@ const Tournament = () => {
                                setError(null);
                                setLoading(false);
                                setTournament(sortParticipants(response.data));
-                               window.document.title = response.data.title;
                        })
                        .catch(error => {
                                setError(error);
@@ -128,6 +128,9 @@ const Tournament = () => {
        };
 
        return <ErrorBoundary>
+               <Helmet>
+                       <title>{tournament.title}</title>
+               </Helmet>
                <Detail addRound={addRound} tournament={tournament} />
        </ErrorBoundary>;
 };