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() {
|
||||
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>);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue