summaryrefslogtreecommitdiff
path: root/lib/pq/pq-review-table-new/request-investigation-dialog.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-11-17 07:06:52 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-11-17 07:06:52 +0000
commit1532c1bf4a3236ce9056f33e51ddfebeff79ed5a (patch)
treec3f3c43d0f73c4b7df4e34e9b1aa308604c562c9 /lib/pq/pq-review-table-new/request-investigation-dialog.tsx
parenta5be73b70e7d8e6be1724252e6923c664c3771f4 (diff)
(최겸) 구매 피드백 처리
Diffstat (limited to 'lib/pq/pq-review-table-new/request-investigation-dialog.tsx')
-rw-r--r--lib/pq/pq-review-table-new/request-investigation-dialog.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pq/pq-review-table-new/request-investigation-dialog.tsx b/lib/pq/pq-review-table-new/request-investigation-dialog.tsx
index aaf10a71..f5a7ff91 100644
--- a/lib/pq/pq-review-table-new/request-investigation-dialog.tsx
+++ b/lib/pq/pq-review-table-new/request-investigation-dialog.tsx
@@ -59,7 +59,7 @@ const requestInvestigationFormSchema = z.object({
}),
investigationAddress: z.string().min(1, "실사 장소를 입력해주세요."),
investigationMethod: z.string().optional(),
- investigationNotes: z.string().optional(),
+ investigationNotes: z.string().min(1, "실사 목적을 입력해주세요."),
})
type RequestInvestigationFormValues = z.infer<typeof requestInvestigationFormSchema>
@@ -264,10 +264,10 @@ export function RequestInvestigationDialog({
name="investigationNotes"
render={({ field }) => (
<FormItem>
- <FormLabel>특이사항 (선택사항)</FormLabel>
+ <FormLabel>실사목적</FormLabel>
<FormControl>
<Textarea
- placeholder="실사 관련 특이사항을 입력하세요"
+ placeholder="실사 목적을 입력하세요"
className="resize-none min-h-[60px]"
{...field}
disabled={isPending}