Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
asmega committed Oct 4, 2024
1 parent cbc834c commit bff2080
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/controllers/admin/claims_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Admin::ClaimsController < Admin::BaseAdminController
def index
@filter_form = Admin::ClaimsFilterForm.new(
filters: filter_params,
session:,
session:
)
@filter_form.save_to_session!

Expand Down
2 changes: 1 addition & 1 deletion app/forms/admin/claims_filter_form.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def status_select_options

def team_member_select_options
array = [["All", nil], ["Unassigned", "unassigned"]]
array = array + DfeSignIn::User.options_for_select
array += DfeSignIn::User.options_for_select

array.map do |name, id|
OpenStruct.new(id:, name:)
Expand Down
2 changes: 1 addition & 1 deletion spec/requests/admin/admin_claims_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
c.save
}

get admin_claims_path, params: {filter:{team_member: mette.id}}
get admin_claims_path, params: {filter: {team_member: mette.id}}

[
student_loans_claims_for_mette,
Expand Down

0 comments on commit bff2080

Please sign in to comment.