From 4c3621f77c7e17b49399cac391211e2926833ede Mon Sep 17 00:00:00 2001 From: wonderlandpark Date: Thu, 11 Mar 2021 13:17:39 +0900 Subject: [PATCH] style: import from paths --- utils/Yup.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/Yup.ts b/utils/Yup.ts index 5e3c56d..d4e922c 100644 --- a/utils/Yup.ts +++ b/utils/Yup.ts @@ -1,8 +1,8 @@ import * as Yup from 'yup' import YupKorean from 'yup-locales-ko' -import { ListType } from '../types' -import { categories, library, reportCats } from './Constants' -import { HTTPProtocol, ID, Prefix, Url, Vanity } from './Regex' +import { ListType } from '@types' +import { categories, library, reportCats } from '@utils/Constants' +import { HTTPProtocol, ID, Prefix, Url, Vanity } from '@utils/Regex' Yup.setLocale(YupKorean) Yup.addMethod(Yup.array, 'unique', function(message, mapper = a => a) {