Skip to content

Commit

Permalink
Fixes missing path param error in update asset bed request (#7313)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored Feb 29, 2024
1 parent 3acb38e commit de5d7ce
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 de5d7ce

Please sign in to comment.