From fc89da4f2fde4fa0f20f78925f5429e2bb08d724 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 29 Jun 2026 21:50:43 +0000 Subject: [PATCH] Fix initial sources.manyDecks value to match List type Changed from Nothing (Maybe) to [] (List) to match the updated Source.Info type that stores manyDecks as a list of instances. Co-Authored-By: Claude Sonnet 4.6 --- client/src/elm/MassiveDecks.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/elm/MassiveDecks.elm b/client/src/elm/MassiveDecks.elm index 6ff3317..687e33b 100644 --- a/client/src/elm/MassiveDecks.elm +++ b/client/src/elm/MassiveDecks.elm @@ -89,7 +89,7 @@ init flags url key = , notifications = Notifications.init , remoteMode = remoteMode , serverVersion = Nothing - , sources = { builtIn = Nothing, manyDecks = Nothing, jsonAgainstHumanity = Nothing } + , sources = { builtIn = Nothing, manyDecks = [], jsonAgainstHumanity = Nothing } , adverts = { manyDecks = False, atTheParty = False } }