Fix a bug preventing the favicon from showing on certain sites
This commit is contained in:
parent
d857a4e159
commit
f2f7263095
|
|
@ -15,12 +15,12 @@ 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>
|
||||||
</Container>);
|
</Container>);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue