Skip to content

Commit 2a01f23

Browse files
committed
remove console.log
1 parent b2ad869 commit 2a01f23

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

composables/api_fetch.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export function api_fetch(
55
{ schema, params },
66
{ request_error_function, response_function, response_error_function } = {},
77
) {
8-
// console.log("api_fetch", schema.route, schema.methods)
98
const errors_store = use_errors_store()
109
const geode_store = use_geode_store()
1110

@@ -29,11 +28,8 @@ export function api_fetch(
2928
geode_store.start_request()
3029
var methods = []
3130
for (const method of schema.methods) {
32-
console.log("method", method)
3331
methods.push(method)
3432
}
35-
console.log("methods", methods)
36-
3733
const indexOf = methods.indexOf("OPTIONS")
3834
const splice = methods.splice(indexOf, 1)
3935
const method = splice[0]

0 commit comments

Comments
 (0)