diff --git a/convex/lib/identity-signing.ts b/convex/lib/identitySigning.ts similarity index 100% rename from convex/lib/identity-signing.ts rename to convex/lib/identitySigning.ts diff --git a/convex/payments/checkout.ts b/convex/payments/checkout.ts index 6ae33c25e7..f6e6ae96f3 100644 --- a/convex/payments/checkout.ts +++ b/convex/payments/checkout.ts @@ -14,7 +14,7 @@ import { v, ConvexError } from "convex/values"; import { action } from "../_generated/server"; import { checkout } from "../lib/dodo"; import { requireUserId } from "../lib/auth"; -import { signUserId } from "../lib/identity-signing"; +import { signUserId } from "../lib/identitySigning"; /** * Create a Dodo Payments checkout session and return the checkout URL. diff --git a/convex/payments/subscriptionHelpers.ts b/convex/payments/subscriptionHelpers.ts index 3d61682c18..0a5bbf8825 100644 --- a/convex/payments/subscriptionHelpers.ts +++ b/convex/payments/subscriptionHelpers.ts @@ -9,7 +9,7 @@ import { MutationCtx } from "../_generated/server"; import { internal } from "../_generated/api"; import { getFeaturesForPlan } from "../lib/entitlements"; -import { verifyUserId } from "../lib/identity-signing"; +import { verifyUserId } from "../lib/identitySigning"; import { DEV_USER_ID, isDev } from "../lib/auth"; // ---------------------------------------------------------------------------