From 07611b052b295048d31d06e48dff744c94d2ce09 Mon Sep 17 00:00:00 2001 From: carddev81 Date: Tue, 28 Jan 2025 17:43:31 -0600 Subject: [PATCH] fix: change libraryId to library_id --- frontend/src/Components/LibrarySearchResultsModal.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frontend/src/Components/LibrarySearchResultsModal.tsx b/frontend/src/Components/LibrarySearchResultsModal.tsx index 7a53859de..4ee31a7df 100644 --- a/frontend/src/Components/LibrarySearchResultsModal.tsx +++ b/frontend/src/Components/LibrarySearchResultsModal.tsx @@ -85,8 +85,11 @@ const LibrarySearchResultsModal = forwardRef< } setIsLoading(true); setSearchError(null); - const libraryIDs = selectedOptions.length > 0 ? selectedOptions : [libraryId]; - const urlParams = libraryIDs.map((libID) => `libraryId=${libID}`).join('&'); + const libraryIDs = + selectedOptions.length > 0 ? selectedOptions : [libraryId]; + const urlParams = libraryIDs + .map((libID) => `library_id=${libID}`) + .join('&'); try { const response = (await API.get( `libraries/search?search=${term}&${urlParams}&page=${page}&per_page=${perPage}` @@ -95,7 +98,9 @@ const LibrarySearchResultsModal = forwardRef< setMeta(response.meta); setSearchResults(response.data[0]); } else { - setSearchError('The search could not be completed due to an unexpected error. Please try again later.'); + setSearchError( + 'The search could not be completed due to an unexpected error. Please try again later.' + ); } } catch { setSearchError(