@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.
package/build/index.js CHANGED
@@ -7404,7 +7404,7 @@ const InstructionsList = ({
7404
7404
  }) : /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
7405
7405
  children: [dontsInstructions, dosInstructions]
7406
7406
  });
7407
- return /*#__PURE__*/jsxRuntime.jsx("div", {
7407
+ return /*#__PURE__*/jsxRuntime.jsx("ul", {
7408
7408
  className: "tw-instructions",
7409
7409
  children: orderedInstructions
7410
7410
  });
@@ -7414,7 +7414,7 @@ function Instruction({
7414
7414
  type
7415
7415
  }) {
7416
7416
  const isInstructionNode = typeof item === 'object' && item !== null && 'content' in item && 'aria-label' in item;
7417
- return /*#__PURE__*/jsxRuntime.jsxs("div", {
7417
+ return /*#__PURE__*/jsxRuntime.jsxs("li", {
7418
7418
  className: "instruction",
7419
7419
  "aria-label": isInstructionNode ? item['aria-label'] : undefined,
7420
7420
  children: [type === 'do' ? /*#__PURE__*/jsxRuntime.jsx(icons.CheckCircleFill, {