diff --git a/src/components/structures/VectorEmbeddedPage.js b/src/components/structures/VectorEmbeddedPage.js index 1c3a106795..fc3b41a504 100644 --- a/src/components/structures/VectorEmbeddedPage.js +++ b/src/components/structures/VectorEmbeddedPage.js @@ -29,7 +29,7 @@ export default class VectorEmbeddedPage extends EmbeddedPage { translate(s) { s = sanitizeHtml(_t(s)); // ugly fix for https://github.com/vector-im/riot-web/issues/4243 - s = s.replace(/\[matrix\]/, '[matrix]'); + s = s.replace(/\[matrix\]/, '[matrix]'); return s; } } diff --git a/src/components/views/auth/VectorAuthFooter.js b/src/components/views/auth/VectorAuthFooter.js index 45e0c2b25a..de38b00a7e 100644 --- a/src/components/views/auth/VectorAuthFooter.js +++ b/src/components/views/auth/VectorAuthFooter.js @@ -34,7 +34,7 @@ const VectorAuthFooter = () => { const authFooterLinks = []; for (const linkEntry of links) { authFooterLinks.push( - + {linkEntry.text} , ); @@ -43,7 +43,7 @@ const VectorAuthFooter = () => { return (
{authFooterLinks} - { _t('powered by Matrix') } + { _t('powered by Matrix') }
); };