diff --git a/server/src/internal/customers/cusProducts/repos/index.ts b/server/src/internal/customers/cusProducts/repos/index.ts index bcf6444c0..1c728afff 100644 --- a/server/src/internal/customers/cusProducts/repos/index.ts +++ b/server/src/internal/customers/cusProducts/repos/index.ts @@ -1,10 +1,9 @@ import { batchUpdateCustomerProducts } from "./batchUpdateCustomerProducts"; -import { getByExternalIds } from "./getByExternalIds"; import { fetchCustomerProductFreeTrials } from "./fetchCustomerProductFreeTrials"; +import { getByExternalIds } from "./getByExternalIds"; export const customerProductRepo = { batchUpdate: batchUpdateCustomerProducts, getByExternalIds, - batchUpdate: batchUpdateCustomerProducts, fetchFreeTrials: fetchCustomerProductFreeTrials, };