Skip to content

Commit

Permalink
update status code to 409
Browse files Browse the repository at this point in the history
  • Loading branch information
Pranshu1902 committed Nov 27, 2023
1 parent 1d2eebc commit a924c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Facility/Consultations/LiveFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ const LiveFeed = (props: any) => {
});
fetchAsset();

if (response.res?.status === 403) {
if (response.res?.status === 409) {
Notification.Error({ msg: response.error?.message });
} else if (response.res?.status === 200) {
Notification.Success({ msg: response?.data?.message });
Expand Down

0 comments on commit a924c1f

Please sign in to comment.