Skip to content

Commit

Permalink
for
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer committed Mar 27, 2024
1 parent 99d76f5 commit 1e71e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/static/dist/js/apollo.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ document.getElementById("assistantButton").addEventListener("click", function ()

apollo_api.get("v1/relations", null, { token: prompt }).then(data => {
console.log(data);
for (let i = 0; i++; i < data.length) {
for (let i = 0; i < data.length; i++) {
console.log(data[i]);
let item = data[i]
type_suggestion += `
Expand Down

0 comments on commit 1e71e1c

Please sign in to comment.