fix(ui): show debug error in transparent font

This commit is contained in:
nick-delirium 2023-10-26 10:56:47 +02:00
parent e1176fd573
commit 19d5babadf
2 changed files with 2 additions and 2 deletions

View file

@ -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]) => (

View file

@ -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>
) : (