Skip to content

Commit

Permalink
remove space from collect_all_text
Browse files Browse the repository at this point in the history
  • Loading branch information
breeg554 committed Oct 8, 2024
1 parent e9f6671 commit 61ae3f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/lib/buildel/blocks/collect_all_text.ex
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ defmodule Buildel.Blocks.CollectAllText do

defp save_text_chunk(text_chunk, %{join_as: "string"} = state) do
state = state |> send_stream_start("output")
text = state[:acc] <> " " <> text_chunk
text = state[:acc] <> text_chunk

state |> Map.put(:acc, text)
end
Expand Down

0 comments on commit 61ae3f8

Please sign in to comment.