From 3d54caa4785b6f742ba9e511acaa05e8eea7fedd Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sun, 23 Feb 2025 11:40:59 -0600 Subject: [PATCH] log carplay template selection on home screen --- components/CarPlay/Home.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/CarPlay/Home.tsx b/components/CarPlay/Home.tsx index a83eca43..7d2e8c6a 100644 --- a/components/CarPlay/Home.tsx +++ b/components/CarPlay/Home.tsx @@ -22,6 +22,8 @@ const CarPlayHome : ListTemplate = new ListTemplate({ ], onItemSelect: async ({ index }) => { + console.debug(`Home item selected`); + switch (index) { case 0: const artists = queryClient.getQueryData([QueryKeys.RecentlyPlayedArtists]);