next-helios-fe 1.8.113 → 1.8.114
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/package.json
CHANGED
@@ -74,9 +74,8 @@ export const Wizard: WizardComponent = ({
|
|
74
74
|
<div className="flex justify-between items-center gap-8 whitespace-nowrap overflow-x-auto [&::-webkit-scrollbar]:hidden">
|
75
75
|
{tabs?.map((tab, index) => {
|
76
76
|
return (
|
77
|
-
|
77
|
+
<React.Fragment key={index}>
|
78
78
|
<button
|
79
|
-
key={index}
|
80
79
|
type="button"
|
81
80
|
className={`group flex items-center gap-4 ${
|
82
81
|
activeTab > index && "is-hopped"
|
@@ -119,7 +118,7 @@ export const Wizard: WizardComponent = ({
|
|
119
118
|
/>
|
120
119
|
</div>
|
121
120
|
)}
|
122
|
-
|
121
|
+
</React.Fragment>
|
123
122
|
);
|
124
123
|
})}
|
125
124
|
</div>
|