From b5be1d45f0cefa060d9cede4d978e02e2fcc3ab1 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Tue, 21 Apr 2026 12:11:11 +0200 Subject: [PATCH] chore(web): address code review comments --- web/src/app/browser/src/keyboardDetails.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/app/browser/src/keyboardDetails.ts b/web/src/app/browser/src/keyboardDetails.ts index 9ced50ee46..a410800fbd 100644 --- a/web/src/app/browser/src/keyboardDetails.ts +++ b/web/src/app/browser/src/keyboardDetails.ts @@ -40,24 +40,24 @@ export interface KeyboardDetails { /** * The user-friendly name of the country in which the language is spoken. (Optional) */ - CountryName: string | null, + CountryName?: string, /** * A three-letter code corresponding to the country. (Optional) */ - CountryCode: string| null, + CountryCode?: string, /** * Deprecated. A unique identifier for the keyboard. (Use 'InternalName' instead.) */ - KeyboardID: string | null, + KeyboardID?: string, /** * The font packaged with the keyboard to support its use. (Optional) */ - Font: InternalKeyboardFont | null, + Font?: InternalKeyboardFont, /** * The font packaged with the keyboard to properly display specialized * OSK characters. (Optional) */ - OskFont: InternalKeyboardFont | null, + OskFont?: InternalKeyboardFont, /** * Indicates whether the keyboard is designed for right-to-left scripts, * null if the keyboard hasn't been loaded yet (and thus the value is unknown).