fix(convex): rename identity-signing to identitySigning (Convex disallows hyphens in module paths)

This commit is contained in:
Elie Habib
2026-04-03 00:32:50 +04:00
parent 9893bb1cf2
commit 52484415a2
3 changed files with 2 additions and 2 deletions

View File

@@ -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.

View File

@@ -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";
// ---------------------------------------------------------------------------