Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ export function CurationWhiskyCardListField({
id={`${field.id}-manual-whisky-image`}
type="file"
accept={MANUAL_WHISKY_IMAGE_ACCEPT}
className="sr-only"
className="hidden"
aria-label={`${manualFieldPrefix} 이미지 파일 선택`}
onChange={(event) =>
void handleManualWhiskyImageChange(field.id, index, event)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ export function WhiskyPairingFields({
id={imageInputId}
type="file"
accept={PAIRING_IMAGE_ACCEPT}
className="sr-only"
className="hidden"
aria-label={`${index + 1}번 위스키 ${pairingIndex + 1}번 페어링 음식 이미지 파일 선택`}
onChange={(event) => void handlePairingImageChange(pairingIndex, event)}
disabled={isImageUploading}
Expand Down Expand Up @@ -375,7 +375,7 @@ export function WhiskyPairingFields({
<div className="space-y-1">
<label
htmlFor={`${getPairingKey(index, pairingIndex)}-name`}
className="sr-only"
className="hidden"
>
{pairingModel.itemNameLabel}
</label>
Expand All @@ -396,7 +396,7 @@ export function WhiskyPairingFields({
<div className="space-y-1">
<label
htmlFor={`${getPairingKey(index, pairingIndex)}-note`}
className="sr-only"
className="hidden"
>
{pairingModel.pairingNoteLabel}
</label>
Expand Down