feat: fixed list lengths

This commit is contained in:
Nick 2025-01-02 03:41:57 -06:00
parent e6bece5ce9
commit a06a938a3b
2 changed files with 2 additions and 2 deletions

View file

@ -139,7 +139,7 @@ type alias Model =
init : () -> ( Model, Effect Msg )
init () =
( { hasBeenCopied = List.repeat 51 False }
( { hasBeenCopied = List.repeat (List.length argumentList) False }
, Effect.batch
[ Effect.map
(\_ -> NoOp)

View file

@ -132,7 +132,7 @@ type alias Model =
init : () -> ( Model, Effect Msg )
init () =
( { hasBeenCopied = List.repeat 51 False }
( { hasBeenCopied = List.repeat (List.length cuckList) False }
, Effect.batch
[ Effect.map
(\_ -> NoOp)