From 4ecc35098f3777112047d33506c990c455134163 Mon Sep 17 00:00:00 2001 From: Giovanni Ravalico <15946771+suddenlyGiovanni@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:20:37 +0200 Subject: [PATCH] fix(resume-schema): Remove StringDate from imports The `StringDate` has been removed from the imports in 'work.ts' within the 'resume-schema' module. This change implies that the `StringDate` class is no longer used within this module. Signed-off-by: Giovanni Ravalico <15946771+suddenlyGiovanni@users.noreply.github.com> --- src/resume-schema/work/work.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resume-schema/work/work.ts b/src/resume-schema/work/work.ts index 513728b..d2569db 100644 --- a/src/resume-schema/work/work.ts +++ b/src/resume-schema/work/work.ts @@ -1,6 +1,6 @@ import * as S from '@effect/schema/Schema' -import { Email, StringDate, Phone, UrlString, TrimmedNonEmpty } from '@/schema-primitive/index.js' +import { Email, Phone, UrlString, TrimmedNonEmpty } from '@/schema-primitive/index.js' import { Role } from './role.js'