From 0a90a208f09e3111b71ec4c16059769d8d1fd3c4 Mon Sep 17 00:00:00 2001 From: Zach Gollwitzer Date: Thu, 17 Jul 2025 20:58:53 -0400 Subject: [PATCH] Lint fixes --- app/views/accounts/show.html.erb | 6 +++--- test/interfaces/accountable_resource_interface_test.rb | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/views/accounts/show.html.erb b/app/views/accounts/show.html.erb index 69ce322d..f9255f85 100644 --- a/app/views/accounts/show.html.erb +++ b/app/views/accounts/show.html.erb @@ -1,6 +1,6 @@ <%= render UI::AccountPage.new( - account: @account, - chart_view: @chart_view, - chart_period: @period, + account: @account, + chart_view: @chart_view, + chart_period: @period, active_tab: @active_tab ) %> diff --git a/test/interfaces/accountable_resource_interface_test.rb b/test/interfaces/accountable_resource_interface_test.rb index ef318cb0..5ad9598e 100644 --- a/test/interfaces/accountable_resource_interface_test.rb +++ b/test/interfaces/accountable_resource_interface_test.rb @@ -14,5 +14,4 @@ module AccountableResourceInterfaceTest get edit_account_url(@account) assert_response :success end - end