From 1e6408d5be180977236ec6eec22229ce9efba749 Mon Sep 17 00:00:00 2001 From: Gauvain <68083474+Gauvino@users.noreply.github.com> Date: Fri, 8 Aug 2025 14:38:00 +0200 Subject: [PATCH] chore: resolve final biome warning with explicit type annotations (#908) --- hooks/useTrickplay.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hooks/useTrickplay.ts b/hooks/useTrickplay.ts index 9a0b3a27..c0eb6f9c 100644 --- a/hooks/useTrickplay.ts +++ b/hooks/useTrickplay.ts @@ -32,7 +32,8 @@ export const useTrickplay = (item: BaseItemDto, enabled = true) => { } const mediaSourceId = item.Id; - const trickplayData = item.Trickplay[mediaSourceId]; + const trickplayData: Record | undefined = + item.Trickplay[mediaSourceId]; if (!trickplayData) { return null;