회원가입 버튼 텍스트 수정
This commit is contained in:
parent
8f926f6887
commit
0b61ef4d12
|
|
@ -65,7 +65,7 @@ export function SignupForm({
|
|||
required
|
||||
/>
|
||||
{touchedFields?.userId && validationErrors.userId && (
|
||||
<p className="text-xs text-destructive">{validationErrors.userId}</p>
|
||||
<p className="text-destructive text-xs">{validationErrors.userId}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
@ -95,7 +95,7 @@ export function SignupForm({
|
|||
</button>
|
||||
</div>
|
||||
{touchedFields?.password && validationErrors.password && (
|
||||
<p className="text-xs text-destructive">{validationErrors.password}</p>
|
||||
<p className="text-destructive text-xs">{validationErrors.password}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
@ -125,7 +125,7 @@ export function SignupForm({
|
|||
</button>
|
||||
</div>
|
||||
{touchedFields?.passwordConfirm && validationErrors.passwordConfirm && (
|
||||
<p className="text-xs text-destructive">{validationErrors.passwordConfirm}</p>
|
||||
<p className="text-destructive text-xs">{validationErrors.passwordConfirm}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
@ -145,7 +145,7 @@ export function SignupForm({
|
|||
required
|
||||
/>
|
||||
{touchedFields?.userName && validationErrors.userName && (
|
||||
<p className="text-xs text-destructive">{validationErrors.userName}</p>
|
||||
<p className="text-destructive text-xs">{validationErrors.userName}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
@ -165,7 +165,7 @@ export function SignupForm({
|
|||
required
|
||||
/>
|
||||
{touchedFields?.phoneNumber && validationErrors.phoneNumber && (
|
||||
<p className="text-xs text-destructive">{validationErrors.phoneNumber}</p>
|
||||
<p className="text-destructive text-xs">{validationErrors.phoneNumber}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
@ -185,7 +185,7 @@ export function SignupForm({
|
|||
required
|
||||
/>
|
||||
{touchedFields?.licenseNumber && validationErrors.licenseNumber && (
|
||||
<p className="text-xs text-destructive">{validationErrors.licenseNumber}</p>
|
||||
<p className="text-destructive text-xs">{validationErrors.licenseNumber}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
@ -205,7 +205,7 @@ export function SignupForm({
|
|||
required
|
||||
/>
|
||||
{touchedFields?.vehicleNumber && validationErrors.vehicleNumber && (
|
||||
<p className="text-xs text-destructive">{validationErrors.vehicleNumber}</p>
|
||||
<p className="text-destructive text-xs">{validationErrors.vehicleNumber}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
@ -221,7 +221,7 @@ export function SignupForm({
|
|||
가입 중...
|
||||
</>
|
||||
) : (
|
||||
"회원가입"
|
||||
"회원가입(공차중계)"
|
||||
)}
|
||||
</Button>
|
||||
|
||||
|
|
@ -241,4 +241,3 @@ export function SignupForm({
|
|||
</Card>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue