1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Chore: Increase strength of Settings types (#10605)

This commit is contained in:
Henry Heino
2024-06-25 06:01:39 -07:00
committed by GitHub
parent c7116b135f
commit a44412ae78
21 changed files with 1747 additions and 1690 deletions

View File

@ -50,7 +50,7 @@ interface Props {
}
function fontFamilyFromSettings() {
const font = editorFont(Setting.value('style.editor.fontFamily'));
const font = editorFont(Setting.value('style.editor.fontFamily') as number);
return font ? `${font}, sans-serif` : 'sans-serif';
}