Skip to content

Commit

Permalink
include original RecordHeading component
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfalke committed Feb 21, 2025
1 parent 2ab9646 commit c9d9d37
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,14 @@ export const RecordHeading = connect(
requestId: state.record.requestId,
}),
RecordActions
)(RecordOverview);
)(function RecordHeadingWrapper({ DefaultComponent, ...props }) {
return (
<>
<DefaultComponent {...props} />
<RecordOverview {...props} />
</>
);
});

function Shortcuts(props) {
const {
Expand Down

0 comments on commit c9d9d37

Please sign in to comment.