Skip to content

Commit ac9934e

Browse files
committed
format
1 parent 8d2ecf2 commit ac9934e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/phoenix_live_view.ex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2209,7 +2209,9 @@ defmodule Phoenix.LiveView do
22092209
reset? = Keyword.get(opts, :reset, false)
22102210

22112211
stream = if reset?, do: LiveStream.reset(original_stream), else: original_stream
2212-
new_stream = Enum.reduce(items, stream, &LiveStream.insert_item(&2, &1, at, limit, update_only))
2212+
2213+
new_stream =
2214+
Enum.reduce(items, stream, &LiveStream.insert_item(&2, &1, at, limit, update_only))
22132215

22142216
if new_stream === original_stream and not reset? do
22152217
socket

0 commit comments

Comments
 (0)