mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-15 12:05:12 -05:00
feat: fixed list lengths
This commit is contained in:
parent
e6bece5ce9
commit
a06a938a3b
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue