fix(ui): show debug error in transparent font
This commit is contained in:
parent
e1176fd573
commit
19d5babadf
2 changed files with 2 additions and 2 deletions
|
|
@ -300,8 +300,7 @@ const Router: React.FC<RouterProps> = (props) => {
|
|||
/>
|
||||
<Route exact strict path={withSiteId(SESSION_PATH, siteIdList)}
|
||||
component={enhancedComponents.Session}/>
|
||||
<Route exact strict path={withSiteId(LIVE_SESSION_PATH, siteIdList)}
|
||||
component={enhancedComponents.LiveSession}/>
|
||||
<Route exact strict path={withSiteId(LIVE_SESSION_PATH, siteIdList)} component={enhancedComponents.LiveSession}/>
|
||||
{additionalRoutes && additionalRoutes}
|
||||
|
||||
{Object.entries(routes.redirects).map(([fr, to]) => (
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ function PlayerContent({ session, fullscreen, activeTab, setActiveTab }: IProps)
|
|||
? 'Please check your data retention policy.'
|
||||
: 'Please check it again in a few minutes.'}
|
||||
</div>
|
||||
{error ? <div style={{ opacity: 0 }}>{error}</div> : null}
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue