hotfix: check for lnbits_site_description setting (#2527)
* fix: make `lnbits_site_description` optional again
This commit is contained in:
parent
35bb3cc94b
commit
6a0b645316
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue