Skip to content

Commit

Permalink
fix(te header): fix logic around te header
Browse files Browse the repository at this point in the history
  • Loading branch information
mdial89f committed Apr 11, 2024
1 parent 91238fe commit 057311f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/ui/src/features/package/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const DetailsContent: FC<{ id: string }> = ({ id }) => {
case undefined: // Some TEs have no authority
if (data._source.appkParent)
return "Appendix K Amendment Package Details";
else if (data._source.actionType)
else if (data._source.actionType == "Extend")
return "Temporary Extension Request Details";
else return undefined;
default:
Expand Down

0 comments on commit 057311f

Please sign in to comment.