diff --git a/packages/dev/s2-docs/pages/react-aria/Modal.mdx b/packages/dev/s2-docs/pages/react-aria/Modal.mdx
index 68de3cfe95b..244b54352ca 100644
--- a/packages/dev/s2-docs/pages/react-aria/Modal.mdx
+++ b/packages/dev/s2-docs/pages/react-aria/Modal.mdx
@@ -187,7 +187,10 @@ const CustomTrigger = React.forwardRef((props, ref) => (
-
+
diff --git a/patches/@parcel+core+2.16.3.patch b/patches/@parcel+core+2.16.3.patch
index f9828c9cc33..bc0c25c61ed 100644
--- a/patches/@parcel+core+2.16.3.patch
+++ b/patches/@parcel+core+2.16.3.patch
@@ -8,9 +8,9 @@ index 1234567..abcdefg 100644
}
- boundaryStr = replaced.subarray(replacedLength - BOUNDARY_LENGTH, replacedLength);
- let strUpToBoundary = replaced.subarray(0, replacedLength - BOUNDARY_LENGTH);
-+ // Copy buffers to avoid reuse issues - subarray returns a view that can be
++ // Copy buffer to avoid reuse issues - subarray returns a view that can be
+ // corrupted if the underlying buffer is modified before the data is written
-+ boundaryStr = Buffer.from(replaced.subarray(replacedLength - BOUNDARY_LENGTH, replacedLength));
++ boundaryStr = replaced.subarray(replacedLength - BOUNDARY_LENGTH, replacedLength);
+ let strUpToBoundary = Buffer.from(replaced.subarray(0, replacedLength - BOUNDARY_LENGTH));
cb(null, strUpToBoundary);
},