Skip to content

Commit

Permalink
Fixed incorrect redirection after adding lab result and aligned view …
Browse files Browse the repository at this point in the history
…and print buttons (#8879)
  • Loading branch information
Mahendar0701 authored Oct 22, 2024
1 parent b1a1fad commit 31e4ad5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function ViewInvestigations(props: {
<div>
{formatDateTime(investigationSession.session_created_date)}
</div>
<div className="space-x-2">
<div className="flex items-center space-x-2">
<ButtonV2
onClick={() =>
navigate(
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Facility/Investigations/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const Investigation = (props: {
msg: "Investigation created successfully!",
});
navigate(
`/facility/${props.facilityId}/patient/${props.patientId}/consultation/${props.consultationId}`,
`/facility/${props.facilityId}/patient/${props.patientId}/consultation/${props.consultationId}/investigations`,
);
} else {
setSaving(false);
Expand Down

0 comments on commit 31e4ad5

Please sign in to comment.