Skip to content

Commit

Permalink
Fixes missing path param error in update asset bed request
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Feb 29, 2024
1 parent bda15df commit 35acdcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Facility/Consultations/Feed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export const Feed: React.FC<IFeedProps> = ({ consultationId }) => {
position: data?.position,
},
},
pathParams: { id: currentPreset?.id },
pathParams: { external_id: currentPreset?.id },
}
);
if (res && assetBedData && res.status === 200) {
Expand Down

0 comments on commit 35acdcd

Please sign in to comment.