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.
This commit is contained in:
Eric 2025-10-28 19:53:19 -05:00 committed by GitHub
parent 1962ea7622
commit f3749ba253
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,
});