fix: Imports where broken

This commit is contained in:
BluJ
2023-05-02 17:45:39 -06:00
parent 513ef55633
commit 4401d09ff2
2 changed files with 5 additions and 4 deletions

View File

@@ -10,11 +10,11 @@ export const smtpConfig = Value.union(
required: { default: "disabled" },
},
Variants.of({
disabled: { name: "Disabled", spec: Config.of({}) },
system: { name: "System Credentials", spec: Config.of({}) },
disabled: { name: "Disabled", spec: Config.of()({}) },
system: { name: "System Credentials", spec: Config.of()({}) },
custom: {
name: "Custom Credentials",
spec: Config.of<SmtpValue, unknown>({
spec: Config.of()<SmtpValue>({
server: Value.text({
name: "SMTP Server",
required: {