Revert "Revert "Change website default value to empty string. (#9127)" (#9437)" (#9438)

This reverts commit d0914ac81f.
This commit is contained in:
✨ Audrey ✨ 2024-05-30 14:20:07 -04:00 committed by GitHub
parent d0914ac81f
commit 0ef5ab79c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -14,6 +14,8 @@ export class FastmailForwarder implements Forwarder {
throw "Unable to obtain Fastmail masked email account ID.";
}
const forDomain = (options.website || "");
const requestInit: RequestInit = {
redirect: "manual",
cache: "no-store",
@ -35,7 +37,7 @@ export class FastmailForwarder implements Forwarder {
"new-masked-email": {
state: "enabled",
description: "",
forDomain: options.website,
forDomain: forDomain,
emailPrefix: options.fastmail.prefix,
},
},

View File

@ -12,7 +12,7 @@ import { Forwarders } from "../options/constants";
import { EmailPrefixOptions, ApiOptions } from "../options/forwarder-options";
export const DefaultFastmailOptions: ApiOptions & EmailPrefixOptions = Object.freeze({
website: null,
website: "",
domain: "",
prefix: "",
token: "",