From 35e0856b29d2d1e1ef1d06bdc97a40fec659b7e6 Mon Sep 17 00:00:00 2001 From: Joaquin Bravo Contreras Date: Fri, 28 Jun 2024 10:02:13 -0600 Subject: [PATCH] feat: show all applicants --- app/models/applicant.server.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/models/applicant.server.ts b/app/models/applicant.server.ts index f22f246..fe46ec0 100644 --- a/app/models/applicant.server.ts +++ b/app/models/applicant.server.ts @@ -129,11 +129,6 @@ export async function searchApplicants() { ) .selectAll("a") .select(["u.name as universityName", "poc.fullName as pocName"]) - .where( - "startDate", - ">=", - new Date(Date.now() - 60 * 60 * 24 * 30 * 3 /** months **/ * 1000) - ) .execute(); }