Skip to content

Commit

Permalink
fix POST request
Browse files Browse the repository at this point in the history
  • Loading branch information
j8seangel committed Sep 26, 2024
1 parent 5fe3510 commit 8eb18ed
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,7 @@ export const searchVesselGroupsVesselsThunk = createAsyncThunk(
? undefined
: {
datasets,
where: encodeURIComponent(
`${uniqVesselIds.map((ssvid) => `ssvid='${ssvid}'`).join(' OR ')}`
),
where: `${uniqVesselIds.map((ssvid) => `ssvid='${ssvid}'`).join(' OR ')}`,
}
const searchResults = await fetchAllSearchVessels({
url: `${url}`,
Expand Down

0 comments on commit 8eb18ed

Please sign in to comment.