From 3fd05c8eb742553d64b7837240af0765f0fae0ba Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 8 Nov 2025 16:28:26 +0100 Subject: [PATCH] fix lint error --- interface/src/app/settings/ApplicationSettings.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/app/settings/ApplicationSettings.tsx b/interface/src/app/settings/ApplicationSettings.tsx index 26692109d..854c347ca 100644 --- a/interface/src/app/settings/ApplicationSettings.tsx +++ b/interface/src/app/settings/ApplicationSettings.tsx @@ -37,13 +37,13 @@ import { validate } from 'validators'; import { API, getBoardProfile, readSettings, writeSettings } from '../../api/app'; import { BOARD_PROFILES } from '../main/types'; -import type { APIcall, Settings } from '../main/types'; +import type { APIcall, BoardProfileKey, Settings } from '../main/types'; import { createSettingsValidator } from '../main/validators'; export function boardProfileSelectItems() { return Object.keys(BOARD_PROFILES).map((code) => ( - {BOARD_PROFILES[code]} + {BOARD_PROFILES[code as BoardProfileKey]} )); }