Merge pull request #11254 from vector-im/t3chguy/fix_skinning_replaces

Fix skinning replaces being broken since being rewritten as React FC's
This commit is contained in:
Michael Telatynski 2019-10-29 10:17:19 +00:00 committed by GitHub
commit 7062015e25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -48,6 +48,4 @@ module.exports = () => {
</div>
);
};
module.exports.statics = {
replaces: 'AuthFooter',
};
module.exports.replaces = 'AuthFooter';

View File

@ -44,6 +44,4 @@ module.exports = ({onFinished}) => {
</div>
);
};
module.exports.statics = {
replaces: 'CustomServerDialog',
};
module.exports.replaces = 'CustomServerDialog';