Skip to content

Commit

Permalink
build errs
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Jun 6, 2024
1 parent 194874a commit 307b58d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/commands/slash/edit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ const EditSlashCommand: SlashCommand = {
lineStream = filterEnglishLinesAtStart(lineStream);

lineStream = filterEnglishLinesAtEnd(filterCodeBlockLines(lineStream));
lineStream = stopAtLines(lineStream);
lineStream = stopAtLines(lineStream, () => {});

generator = streamWithNewLines(
fixCodeLlamaFirstLineIndentation(lineStream),
Expand Down
2 changes: 1 addition & 1 deletion core/util/verticalEdit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export async function* streamDiffLines(

lines = filterEnglishLinesAtStart(lines);
lines = filterCodeBlockLines(lines);
lines = stopAtLines(lines);
lines = stopAtLines(lines, () => {});
lines = skipLines(lines);
if (inept) {
// lines = fixCodeLlamaFirstLineIndentation(lines);
Expand Down

0 comments on commit 307b58d

Please sign in to comment.