diff --git a/src/components/Player/TextMessage.jsx b/src/components/Player/TextMessage.jsx index 990a85a..a89ea48 100644 --- a/src/components/Player/TextMessage.jsx +++ b/src/components/Player/TextMessage.jsx @@ -2,15 +2,15 @@ import { h } from 'preact' export default function ({ style, text }) { const defaultContent = ( - + {text} ) return ({ grid: (
{text} 
), - input: (> {text}), - subheader: ({text}), - emphasized: ({text}), + input: (> {text}), + subheader: ({text}), + emphasized: ({text}), endOfLine: (
) })[style] || defaultContent }