diff --git a/src/common/components/Input/components/InputLine/index.tsx b/src/common/components/Input/components/InputLine/index.tsx index a9c86bd1..4efb873c 100644 --- a/src/common/components/Input/components/InputLine/index.tsx +++ b/src/common/components/Input/components/InputLine/index.tsx @@ -3,7 +3,7 @@ import { useFormContext } from 'react-hook-form'; import { DeviceTypeContext } from '@store/deviceTypeContext'; -import { inputFontVar, inputLineVar, inputVar } from './style.css'; +import { inputFont, inputLineVar, inputVar } from './style.css'; import { formatBirthdate } from './utils/formatBirthdate'; import { formatPhoneNumber } from './utils/formatPhoneNumber'; import { TextBoxProps } from '../../types'; @@ -50,7 +50,7 @@ const InputLine = ({ [ - { - color: theme.color.baseText, - ...font, +export const inputFont = style({ + color: theme.color.baseText, + ...theme.font.BODY_2_16_R, - '::placeholder': { - color: theme.color.placeholder, - ...font, - }, - }, - ], -); + '::placeholder': { + color: theme.color.placeholder, + }, +}); diff --git a/src/views/CompletePage/components/Survey.tsx b/src/views/CompletePage/components/Survey.tsx index 543293cc..22d159e8 100644 --- a/src/views/CompletePage/components/Survey.tsx +++ b/src/views/CompletePage/components/Survey.tsx @@ -20,9 +20,6 @@ const Survey = () => { setTimeout(() => { setPoint('CHANGED'); }, 200); - setTimeout(() => { - setPoint(-1); - }, 2200); }; const { mutate } = useMutateSatisfaction({ onSuccess: handleSatisfaction });