From 5c0d5ec13d09d3797f55914813266ed1db01b54f Mon Sep 17 00:00:00 2001 From: gms-gs Date: Tue, 19 Nov 2024 18:45:02 +0000 Subject: [PATCH] Update student finance to student loan text --- app/decorators/course_decorator.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/decorators/course_decorator.rb b/app/decorators/course_decorator.rb index d454efdd49..d0b50d30a2 100644 --- a/app/decorators/course_decorator.rb +++ b/app/decorators/course_decorator.rb @@ -225,14 +225,14 @@ def funding_option if excluded_from_bursary? # Duplicate branch body detected - 'Student finance if you’re eligible' + 'Student loans if you’re eligible' elsif has_scholarship_and_bursary? && bursary_and_scholarship_flag_active_or_preview? - 'Scholarships or bursaries, as well as student finance, are available if you’re eligible' + 'Scholarships or bursaries, as well as student loans, are available if you’re eligible' elsif has_bursary? && bursary_and_scholarship_flag_active_or_preview? - 'Bursaries and student finance are available if you’re eligible' + 'Bursaries and student loans are available if you’re eligible' else # Duplicate branch body detected - 'Student finance is available if you’re eligible' + 'Student loans are available if you’re eligible' end end