You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bump minAppVersion to 1.13.0, the version that introduced the getSettingDefinitions()/setControlValue() APIs already used in Settings.ts, resolving an obsidianmd/no-unsupported-api finding.
Remove the pre-1.13.0 display() method entirely; SettingTab.display()
already has a concrete, deprecated-but-optional default
implementation once getSettingDefinitions() is implemented, so
nothing needs to override it.
Use createDiv() instead of createEl("div", ...) per obsidianmd/prefer-create-el.