From a95c04f0edee79a687f7381ec52eccd2a0740ea7 Mon Sep 17 00:00:00 2001 From: Abhigyan Ghosh <30973042+abhigyanghosh30@users.noreply.github.com> Date: Thu, 6 Jun 2024 14:09:35 +0530 Subject: [PATCH] fix: WD-11797 (#13925) --- webapp/shop/cred/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/shop/cred/views.py b/webapp/shop/cred/views.py index b8fbe91c955..cecd11ef71a 100644 --- a/webapp/shop/cred/views.py +++ b/webapp/shop/cred/views.py @@ -88,7 +88,7 @@ def cred_home(ua_contracts_api, **_): user_purchasing = False enterprise_purchasing = False for product in available_products: - if product.get("name") == "CUE Linux Essentials": + if product.get("name") == "cue-linux-essentials": user_purchasing = True if product.get("name") == "CUE Activation Key": enterprise_purchasing = True