From 5ffdc79bc779c4cbf08992d3622e0177bf8358b0 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 28 Oct 2019 18:16:54 +0000 Subject: [PATCH] Fix skinning replaces being broken since being rewritten as React FC's --- src/components/views/auth/VectorAuthFooter.js | 4 +--- src/components/views/auth/VectorCustomServerDialog.js | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/views/auth/VectorAuthFooter.js b/src/components/views/auth/VectorAuthFooter.js index a5f27350c..574d71047 100644 --- a/src/components/views/auth/VectorAuthFooter.js +++ b/src/components/views/auth/VectorAuthFooter.js @@ -48,6 +48,4 @@ module.exports = () => { ); }; -module.exports.statics = { - replaces: 'AuthFooter', -}; +module.exports.replaces = 'AuthFooter'; diff --git a/src/components/views/auth/VectorCustomServerDialog.js b/src/components/views/auth/VectorCustomServerDialog.js index 5dc3c271a..1f84762ef 100644 --- a/src/components/views/auth/VectorCustomServerDialog.js +++ b/src/components/views/auth/VectorCustomServerDialog.js @@ -49,6 +49,4 @@ module.exports = ({onFinished}) => { ); }; -module.exports.statics = { - replaces: 'CustomServerDialog', -}; +module.exports.replaces = 'CustomServerDialog';