chore(lint): clear fmt + clippy unused_mut on archipelagos_server #177
No reviewers
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_archipelagos!177
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "development_mik"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Two mechanical fixes for the rustfmt + clippy steps that were silently failing on
developmentrun #387 (continue-on-error: true).fmt
archipelagos/system/contexts/src/views/create_form.rs:55—let can_submit = …chain folded onto a single line per rustfmt.clippy
-D unused_mutserver/src/main.rs— 9let mut x = use_signal(|| …)bindings dropped themut(lines 614, 615, 618-622, 1150, 2501). Dioxus 0.7Signal<T>mutates through&selfvia the reactive runtime — no binding-levelmutneeded.Behaviour unchanged. Just clearing the silent CI red.
Signed-off-by: mik-tf