diff --git a/components/form/content/audio-detail-form.tsx b/components/form/content/audio-detail-form.tsx
index 66d1d069..3690b3a2 100644
--- a/components/form/content/audio-detail-form.tsx
+++ b/components/form/content/audio-detail-form.tsx
@@ -290,15 +290,8 @@ export default function FormAudioDetail() {
setSelectedPublishers(publisherIds);
}
- const matchingCategory = categories.find(
- (category) => category.id === details.categoryId
- );
-
- if (matchingCategory) {
- setSelectedTarget(matchingCategory.name);
- }
-
- setSelectedTarget(details?.categoryId);
+ // Set the selected target to the category ID from details
+ setSelectedTarget(String(details.category.id));
const filesData = details?.files || [];
const audioFiles = filesData.filter(
@@ -515,18 +508,28 @@ export default function FormAudioDetail() {