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 a5f27350..574d7104 100644
--- a/src/components/views/auth/VectorAuthFooter.js
+++ b/src/components/views/auth/VectorAuthFooter.js
@@ -48,6 +48,4 @@ module.exports = () => {
         </div>
     );
 };
-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 5dc3c271..1f84762e 100644
--- a/src/components/views/auth/VectorCustomServerDialog.js
+++ b/src/components/views/auth/VectorCustomServerDialog.js
@@ -49,6 +49,4 @@ module.exports = ({onFinished}) => {
         </div>
     );
 };
-module.exports.statics = {
-    replaces: 'CustomServerDialog',
-};
+module.exports.replaces = 'CustomServerDialog';