Fix cloning settings sets with schemes

This commit is contained in:
Samuel Elliott 2018-03-22 16:46:42 +00:00
parent eaeae7ad98
commit 66eee86eb3
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 0 additions and 6 deletions

View File

@ -15,12 +15,6 @@ export default class SettingsScheme {
constructor(args) {
this.args = args.args || args;
this.args.settings = this.settings.map(({ category, settings }) => ({
category, settings: settings.map(({ id, value }) => ({
id, value
}))
}));
Object.freeze(this);
}