remove debug

This commit is contained in:
2023-04-24 20:53:33 +10:00
parent 2d576645d8
commit 2771cdd053
2 changed files with 0 additions and 3 deletions

View File

@@ -325,7 +325,6 @@ const handleBlur = async () => {
};
const handleCheckbox = (event: Event) => {
console.log("here");
const target = event.target as HTMLInputElement;
value.value = target.checked;
emits("update:modelValue", target.checked);

View File

@@ -194,8 +194,6 @@ const handleLoad = async () => {
query["page"] = postsPage.value;
query["sort"] = "start_at";
console.log(query);
let result = await api.get({
url: "/events",
params: query,