Remove duplicate definition of TimezoneSchema from schema.mjs

This commit is contained in:
2023-09-05 13:34:42 -05:00
parent 76cff2d5a6
commit 380b950fca

4
src/env/schema.mjs vendored
View File

@@ -1,8 +1,6 @@
// @ts-check
import { z } from 'zod';
// If this line fails, you're not running Node v18 or higher. Please upgrade.
const TimezoneSchema = z.enum(Intl.supportedValuesOf("timeZone"));
import { TimezoneSchema } from '@/utils/timezone';
/**
* Specify your server-side environment variables schema here.