@transferwise/components 0.0.0-experimental-db52174 → 0.0.0-experimental-484d8e7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7371,7 +7371,7 @@ const InstructionsList = ({
7371
7371
  }) : /*#__PURE__*/jsxs(Fragment, {
7372
7372
  children: [dontsInstructions, dosInstructions]
7373
7373
  });
7374
- return /*#__PURE__*/jsx("div", {
7374
+ return /*#__PURE__*/jsx("ul", {
7375
7375
  className: "tw-instructions",
7376
7376
  children: orderedInstructions
7377
7377
  });
@@ -7381,7 +7381,7 @@ function Instruction({
7381
7381
  type
7382
7382
  }) {
7383
7383
  const isInstructionNode = typeof item === 'object' && item !== null && 'content' in item && 'aria-label' in item;
7384
- return /*#__PURE__*/jsxs("div", {
7384
+ return /*#__PURE__*/jsxs("li", {
7385
7385
  className: "instruction",
7386
7386
  "aria-label": isInstructionNode ? item['aria-label'] : undefined,
7387
7387
  children: [type === 'do' ? /*#__PURE__*/jsx(CheckCircleFill, {