Skip to content

Commit b64594b

Browse files
committed
style: make prettier happy
1 parent 7d424a5 commit b64594b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ declare const htmx: typeof htmxType;
2222

2323
if (name === "htmx:beforeRequest") {
2424
const xhr = evt.detail.xhr as XMLHttpRequest;
25-
(xhr as any)._chunkedMode = elt.getAttribute("hx-chunked-mode") || "append";
25+
(xhr as any)._chunkedMode =
26+
elt.getAttribute("hx-chunked-mode") || "append";
2627
(xhr as any)._chunkedLastLen = 0;
2728

2829
xhr.onprogress = function () {

0 commit comments

Comments
 (0)