diff --git a/mnemo_cards_admin/src/components/BulkCardEditor.tsx b/mnemo_cards_admin/src/components/BulkCardEditor.tsx index eb6bf5e..64229b1 100644 --- a/mnemo_cards_admin/src/components/BulkCardEditor.tsx +++ b/mnemo_cards_admin/src/components/BulkCardEditor.tsx @@ -262,13 +262,17 @@ export function BulkCardEditor({ images, onComplete, onCancel }: BulkCardEditorP setFormData(prev => ({ ...prev, packId: value || '' }))} + onValueChange={(value: string) => { + // If "none" is selected, clear the packId + const packId = value === '__none__' ? '' : value + setFormData(prev => ({ ...prev, packId })) + }} > - None + None {packsData?.items && packsData.items.length > 0 ? ( packsData.items.map((pack) => (