Fix a bug preventing the favicon from showing on certain sites

This commit is contained in:
Jonny 2019-05-02 08:48:02 +02:00 committed by JP1998
parent d857a4e159
commit f2f7263095
1 changed files with 6 additions and 6 deletions

View File

@ -15,12 +15,12 @@ class TurniereApp extends App {
render() {
const {Component, pageProps, reduxStore} = this.props;
return (<Container>
<Notifications/>
<Favicon url="../static/icons/favicon.ico"/>
<Provider store={reduxStore}>
<Component {...pageProps} />
</Provider>
</Container>);
<Notifications />
<Favicon url="/static/icons/favicon.ico"/>
<Provider store={reduxStore}>
<Component {...pageProps} />
</Provider>
</Container>);
}
}