B:BD[
2.36481] → [
2.36481:36716]
{!isEditMode && (
<div className="space-y-4">
<div className="flex justify-between items-center">
<h4 className="font-medium text-gray-900">Call Types (Optional)</h4>
<div className="space-y-4">
<div className="flex justify-between items-center">
<h4 className="font-medium text-gray-900">Call Types (Optional)</h4>
<Button
type="button"
onClick={addCallType}
variant="outline"
size="sm"
className="flex items-center gap-1"
>
<Plus className="h-3 w-3" />
Add Call Type
</Button>
</div>
<p className="text-sm text-gray-600">Examples: male, female, duet, trill, hunting, begging</p>
{callTypes.map((callType, index) => (
<div key={callType.id} className="flex gap-2">
<input
type="text"
value={callType.label}
onChange={(e) => updateCallType(index, e.target.value)}
className="flex-1 px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
placeholder="Call type label"
maxLength={100}
/>