Fix frontend type imports

This commit is contained in:
Owen
2025-10-14 11:28:56 -07:00
parent a8d00a47cd
commit c0039190bd
15 changed files with 50 additions and 93 deletions

View File

@@ -6,7 +6,6 @@ import { response as sendResponse } from "@server/lib/response";
import license from "#private/license/license";
import { z } from "zod";
import { fromError } from "zod-validation-error";
import { LicenseStatus } from "@server/license/license";
const bodySchema = z
.object({
@@ -14,8 +13,6 @@ const bodySchema = z
})
.strict();
export type ActivateLicenseStatus = LicenseStatus;
export async function activateLicense(
req: Request,
res: Response,