From 1f24d4b3783c62957e0c19360a518daa020a94e9 Mon Sep 17 00:00:00 2001 From: Michael Volo Date: Thu, 11 May 2023 07:49:20 -0500 Subject: [PATCH] check if not a student for title 1 school checkbox (#1180) --- app/views/newflow/social_auth/confirm_social_info_form.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/newflow/social_auth/confirm_social_info_form.html.erb b/app/views/newflow/social_auth/confirm_social_info_form.html.erb index 5ac20103c1..c2ce87ea90 100644 --- a/app/views/newflow/social_auth/confirm_social_info_form.html.erb +++ b/app/views/newflow/social_auth/confirm_social_info_form.html.erb @@ -90,7 +90,7 @@
- <% if unverified_user&.student? && is_BRI_book_adopter? %> + <% if unverified_user.present? && !unverified_user&.student? && is_BRI_book_adopter? %> <%= render partial: 'newflow/is_title_1_school_checkbox' %> <% end %>