From 6d97f28cb236e92315cdd30e493c19ada900b339 Mon Sep 17 00:00:00 2001 From: Uruk Date: Sun, 18 Jan 2026 14:00:06 +0100 Subject: [PATCH] fix: correct useSettings destructuring in ChromecastControls --- components/ChromecastControls.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ChromecastControls.tsx b/components/ChromecastControls.tsx index f9a3bfbd..43f152ef 100644 --- a/components/ChromecastControls.tsx +++ b/components/ChromecastControls.tsx @@ -83,7 +83,7 @@ export default function ChromecastControls({ const api = useAtomValue(apiAtom); const user = useAtomValue(userAtom); - const [settings] = useSettings(); + const { settings } = useSettings(); const [currentTime, setCurrentTime] = useState(0); const [remainingTime, setRemainingTime] = useState(Infinity);