From 115eca71cadc80cf2d2b901ebaf08c68c3218f71 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sat, 12 Feb 2022 19:16:00 +0100 Subject: [PATCH] missing type --- frontend/src/scripts/misc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/scripts/misc.ts b/frontend/src/scripts/misc.ts index 01d715157..1d2407abf 100644 --- a/frontend/src/scripts/misc.ts +++ b/frontend/src/scripts/misc.ts @@ -189,7 +189,7 @@ export async function getQuotes(language: string): Promise { } } -type Font = { name: string }; +type Font = { name: string; display?: string }; let fontsList: Font[] = []; export async function getFontsList(): Promise {