diff --git a/.formatter.exs b/.formatter.exs
index 602260a..6fc82a9 100644
--- a/.formatter.exs
+++ b/.formatter.exs
@@ -3,5 +3,5 @@
subdirectories: ["priv/*/migrations"],
plugins: [Phoenix.LiveView.HTMLFormatter],
inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}", "priv/*/seeds.exs"],
- line_length: 100
+ line_length: 120
]
diff --git a/lib/pinchflat_web/components/core_components.ex b/lib/pinchflat_web/components/core_components.ex
index cc65540..5c7c073 100644
--- a/lib/pinchflat_web/components/core_components.ex
+++ b/lib/pinchflat_web/components/core_components.ex
@@ -168,8 +168,7 @@ defmodule PinchflatWeb.CoreComponents do
phx-connected={hide("#server-error")}
hidden
>
- Hang in there while we get back on track
- <.icon name="hero-arrow-path" class="ml-1 h-3 w-3 animate-spin" />
+ Hang in there while we get back on track <.icon name="hero-arrow-path" class="ml-1 h-3 w-3 animate-spin" />
"""
@@ -245,8 +244,7 @@ defmodule PinchflatWeb.CoreComponents do
values: ~w(checkbox color date datetime-local email file hidden month number password
toggle range radio search select tel text textarea time url week)
- attr :field, Phoenix.HTML.FormField,
- doc: "a form field struct retrieved from the form, for example: @form[:email]"
+ attr :field, Phoenix.HTML.FormField, doc: "a form field struct retrieved from the form, for example: @form[:email]"
attr :errors, :list, default: []
attr :checked, :boolean, doc: "the checked flag for checkbox inputs"
@@ -254,8 +252,7 @@ defmodule PinchflatWeb.CoreComponents do
attr :options, :list, doc: "the options to pass to Phoenix.HTML.Form.options_for_select/2"
attr :multiple, :boolean, default: false, doc: "the multiple flag for select inputs"
- attr :rest, :global,
- include: ~w(accept autocomplete capture cols disabled form list max maxlength min minlength
+ attr :rest, :global, include: ~w(accept autocomplete capture cols disabled form list max maxlength min minlength
multiple pattern placeholder readonly required rows size step)
slot :inner_block
@@ -279,15 +276,7 @@ defmodule PinchflatWeb.CoreComponents do