Skip to content

Commit

Permalink
chore: Remove some left over debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
chinthliss committed Jun 25, 2024
1 parent 8d11ab2 commit ad00278
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions resources/ts/components/FormEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ const saveValues = () => {
pendingSaveId = null;
for (const id in pendingSaves) {
const value = pendingSaves[id];
console.log("Saving: ", id, ": ", value);
delete pendingSaves[id];
channel.send('updateForm', {
form: presentFormId.value,
Expand All @@ -233,7 +232,6 @@ const queueSave = (propName: string, propValue: string) => {
}
const queueSaveFromElement = (e: InputEvent) => {
console.log(e.target);
const element = e.target as HTMLInputElement;
if (!element?.id) {
console.log("Couldn't queue save value as the element triggering it has no id: ", e);
Expand Down

0 comments on commit ad00278

Please sign in to comment.