refactor: fix credo issues
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon 2026-01-20 18:34:17 +01:00
parent 01dea8bb8b
commit fbf3b64192
Signed by: simon
GPG key ID: 40E7A58C4AA1EDB2
2 changed files with 74 additions and 28 deletions

View file

@ -945,9 +945,7 @@ defmodule MvWeb.MemberLive.IndexTest do
# Build URL with all 60 filters
filter_params =
boolean_fields
|> Enum.map(fn cf -> "bf_#{cf.id}=true" end)
|> Enum.join("&")
Enum.map_join(boolean_fields, "&", fn cf -> "bf_#{cf.id}=true" end)
{:ok, view, _html} = live(conn, "/members?#{filter_params}")