We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b238049 commit 7011040Copy full SHA for 7011040
1 file changed
src/views/components/MessageMarkdown/index.tsx
@@ -75,7 +75,6 @@ const MessageMarkdown = observer((props: MessageMarkdownProps) => {
75
const platform = process.env.platform;
76
77
const handleExplain = (value: string | undefined) => {
78
- console.log(value);
79
switch (value) {
80
case "#ask_code":
81
chat.addMessages([
@@ -317,7 +316,7 @@ Generate a professionally written and formatted release note in markdown with th
317
316
if (lanugage === "step" || lanugage === "Step") {
318
const status =
319
activeStep &&
320
- Number(index) === codes.length - 1 &&
+ Number(index) === codes.length &&
321
lastNode.type === "code"
322
? "running"
323
: "done";
0 commit comments