hotfix: check for lnbits_site_description setting (#2527)

* fix: make `lnbits_site_description` optional again
This commit is contained in:
Vlad Stan 2024-05-22 11:53:34 +03:00 committed by GitHub
parent 35bb3cc94b
commit 6a0b645316
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,7 +83,7 @@ class InstalledExtensionsSettings(LNbitsSettings):
class ThemesSettings(LNbitsSettings):
lnbits_site_title: str = Field(default="LNbits")
lnbits_site_tagline: str = Field(default="free and open-source lightning wallet")
lnbits_site_description: str = Field(
lnbits_site_description: Optional[str] = Field(
default="The world's most powerful suite of bitcoin tools."
)
LNBITS_SHOW_HOME_PAGE_ELEMENTS: bool = Field(default=True)