Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename enabled hook to selected
Signed-off-by: Adhitya Mamallan <adhitya.mamallan@uber.com>
  • Loading branch information
adhityamamallan committed Jan 16, 2026
commit 207f6ebe187f6f3a57ec3d8275e134fb38fe58f4

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,9 @@ import { WorkflowHistoryContext } from '../workflow-history-context-provider/wor
import { type Props } from '../workflow-history.types';

export default function WorkflowHistoryComponent(props: Props) {
<<<<<<< HEAD
const { isWorkflowHistoryV2Selected } = useContext(WorkflowHistoryContext);

return isWorkflowHistoryV2Selected ? (
=======
const { isWorkflowHistoryV2Enabled } = useContext(WorkflowHistoryContext);

return isWorkflowHistoryV2Enabled ? (
>>>>>>> c32111a1 (Implement using local storage and restructure code)
<WorkflowHistoryV2 {...props} />
) : (
<WorkflowHistory {...props} />
Expand Down