@colisweb/rescript-toolkit 4.4.0 → 4.4.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "4.4.0",
3
+ "version": "4.4.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -192,7 +192,7 @@ module Make = (Config: RouterConfig) => {
192
192
  <React.Fragment key={i->Int.toString}>
193
193
  {i > 0 ? <ReactIcons.MdKeyboardArrowRight size=20 /> : React.null}
194
194
  {links->Toolkit__Primitives.Array.isLastIndex(i)
195
- ? <p className="font-semibold"> text </p>
195
+ ? <div className="font-semibold"> text </div>
196
196
  : <Link route className="hover:underline"> text </Link>}
197
197
  </React.Fragment>
198
198
  })