Skip to content

Commit

Permalink
remove two straggling console.logs (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr authored May 18, 2023
1 parent e7cc8f1 commit 446004c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/src/TaskForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,6 @@ function HpkeConfig({ setFieldValue }: FormikProps<NewTask>) {
let reader = new FileReader();
reader.addEventListener("load", () => {
if (typeof reader.result === "string") {
console.log(reader.result);
console.log(reader.result.split(",")[1]);
setFieldValue("hpke_config", reader.result.split(",")[1]);
}
});
Expand Down

0 comments on commit 446004c

Please sign in to comment.