Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions js/widgets/reflection.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,6 @@ class ReflectionMatrix {
async updateProjectCode() {
const code = await this.activity.prepareExport();
if (code === this.code) {
console.log("No changes in code detected.");
return; // No changes in code
}

Expand All @@ -308,8 +307,6 @@ class ReflectionMatrix {
if (data.algorithm !== "unchanged") {
this.projectAlgorithm = data.algorithm; // update algorithm
this.code = code;
} else {
console.log("No changes in algorithm detected.");
}
this.botReplyDiv(data, false, false);
} else {
Expand Down Expand Up @@ -416,7 +413,6 @@ class ReflectionMatrix {
*/
async generateAnalysis() {
try {
console.log("Summary stored", this.summary);
const response = await fetch(`${this.PORT}/analysis`, {
method: "POST",
headers: { "Content-Type": "application/json" },
Expand Down Expand Up @@ -580,7 +576,6 @@ class ReflectionMatrix {
} catch (e) {
console.warn("Could not save analysis report to localStorage:", e);
}
console.log("Conversation saved in localStorage.");
}

/** Reads the analysis report from localStorage.
Expand Down
Loading