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