correct error in TabulationController

This commit is contained in:
Matt Young 2024-06-21 21:56:56 -05:00
parent 46d40adb6e
commit 91e92a3aa2
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class TabulationController extends Controller
} }
if ($this->doublerService->studentIsDoubler($entry->student_id)) { // If this entry is a doubler if ($this->doublerService->studentIsDoubler($entry->student_id)) { // If this entry is a doubler
if ($this->doublerService->getDoublerInfo($entry->student_id)[$entry->id]['status']) { // If there is no decision for this entry if ($this->doublerService->getDoublerInfo($entry->student_id)[$entry->id]['status'] === 'undecided') { // If there is no decision for this entry
$doublerComplete = false; $doublerComplete = false;
} }
} }