pull/116/head
Jon Eugster 2 years ago
parent 9c6ed17113
commit 22f0bac569

@ -89,7 +89,7 @@ export function WelcomeAppBar({gameInfo, toggleImpressum, openEraseMenu, openUpl
</div> </div>
<div> <div>
<span className="app-bar-title"> <span className="app-bar-title">
{gameInfo.title} {gameInfo?.title}
</span> </span>
</div> </div>
<div className="nav-btns"> <div className="nav-btns">

@ -31,7 +31,7 @@ function IntroductionPanel({introduction}: {introduction: string}) {
// then this can be simplified. // then this can be simplified.
// let text: Array<string> = introduction.split(/\n(\s*\n)+/) // let text: Array<string> = introduction.split(/\n(\s*\n)+/)
let text: Array<string> = [introduction] let text: Array<string> = introduction ? [introduction] : []
return <div className="column chat-panel"> return <div className="column chat-panel">
<div className="chat"> <div className="chat">

Loading…
Cancel
Save