@ory/elements-react 1.0.0-next.28 → 1.0.0-next.29

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/dist/index.mjs CHANGED
@@ -1181,14 +1181,14 @@ function AuthMethodList({ options, setSelectedGroup }) {
1181
1181
  setSelectedGroup(group);
1182
1182
  }
1183
1183
  };
1184
- return options.map((option) => /* @__PURE__ */ jsx(
1184
+ return /* @__PURE__ */ jsx(Card.AuthMethodListContainer, { children: options.map((option) => /* @__PURE__ */ jsx(
1185
1185
  Card.AuthMethodListItem,
1186
1186
  {
1187
1187
  group: option,
1188
1188
  onClick: () => handleClick(option)
1189
1189
  },
1190
1190
  option
1191
- ));
1191
+ )) });
1192
1192
  }
1193
1193
  function OryFormGroupDivider() {
1194
1194
  const { Card } = useComponents();