From f3749ba2534ec696fdc84eeffe533eaeed882bf6 Mon Sep 17 00:00:00 2001 From: Eric Date: Tue, 28 Oct 2025 19:53:19 -0500 Subject: [PATCH] Website: update variable name in signup.js (#34908) Changes: - Fixed a bug in signup.js, which prevented users who were eligible for a render trial from being successfully assigned an instance. --- website/api/controllers/entrance/signup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/api/controllers/entrance/signup.js b/website/api/controllers/entrance/signup.js index 6a2a5ce32b..8dd80c8eb4 100644 --- a/website/api/controllers/entrance/signup.js +++ b/website/api/controllers/entrance/signup.js @@ -177,7 +177,7 @@ the account verification message.)`, if(fleetPremiumTrialType === 'render trial') { // If this user is eligable for a Render POV, we'll let renderInstancesThatCanBeAssignedToThisUser = await RenderProofOfValue.find({ - where: {status: 'ready-for-assignment', user: null}, + where: {status: 'ready for assignment', user: null}, sort: 'createdAt DESC', limit: 1, });