diff --git a/app/api/endpoints/dashboard.py b/app/api/endpoints/dashboard.py index 53cf60b..0cbe802 100644 --- a/app/api/endpoints/dashboard.py +++ b/app/api/endpoints/dashboard.py @@ -51,7 +51,7 @@ async def get_dashboard_info( else: user_order_count[order.userid] = 1 for user, count in user_order_count.items(): - if count > 2: + if count >= 2: repeat_user_count += 1 diff --git a/jobs.sqlite b/jobs.sqlite index 1e1cb7b..a80656b 100644 Binary files a/jobs.sqlite and b/jobs.sqlite differ