import { HttpTypes } from "@medusajs/types" import { JsonViewSection } from "../../../../../components/common/json-view-section" type WorkflowExecutionPayloadSectionProps = { execution: HttpTypes.AdminWorkflowExecution } export const WorkflowExecutionPayloadSection = ({ execution, }: WorkflowExecutionPayloadSectionProps) => { let payload = execution.context?.data?.payload if (!payload) { return null } // payloads may be a primitive, so we need to wrap them in an object // to ensure the JsonViewSection component can render them. if (typeof payload !== "object") { payload = { input: payload } } return }