update referralDataSchema

This commit is contained in:
Kirill Litvinov
2024-03-04 14:52:32 +03:00
parent 3c04a0fee6
commit 274807edbd
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import { z } from "zod";
import { z } from 'zod';
export const referralDataSchema = z.object({
referer: z.string(),
referer: z.string().nullable(),
isReferral: z.boolean(),
});