Fix exported settings being not importable
This commit is contained in:
parent
618042c3e3
commit
151f5e355d
|
@ -173,7 +173,7 @@ function validate(profile: unknown): void {
|
|||
if (!isObject(profile)) throw new Error("not an object");
|
||||
|
||||
// Check if unnecessary properties exist
|
||||
if (Object.keys(profile).some((key) => !profileProps.includes(key)))
|
||||
if (Object.keys(profile).some((key) => !profileProps.includes(key) && key !== "host"))
|
||||
throw new Error("Unnecessary properties exist");
|
||||
|
||||
if (!profile.name) throw new Error("Missing required prop: name");
|
||||
|
|
Loading…
Reference in New Issue