diff --git a/src/views/AddMerchView.vue b/src/views/AddMerchView.vue index 00d9646..eb12ff6 100644 --- a/src/views/AddMerchView.vue +++ b/src/views/AddMerchView.vue @@ -11,20 +11,6 @@ const name = ref('') // surugaya block const surugayaLink = ref('') -const checkCookie = ref(true) -const surugayaDefaultCookieValues = ref('safe_search_expired=2;safe_search_option=3') -const surugayaCustomCookieValues = ref('') - -const surugayaCookieValue = computed({ - get() { - return checkCookie.value ? surugayaDefaultCookieValues.value : surugayaCustomCookieValues.value - }, - set(newValue) { - if (!checkCookie.value) { - surugayaCustomCookieValues.value = newValue - } - }, -}) // mandarake block const checkAutoComplete = ref(true) @@ -55,7 +41,6 @@ const payload = computed(() => { link: mandarakeResultLink.value, }, origin_surugaya: { - cookie_values: surugayaCookieValue.value, link: surugayaLink.value, }, } @@ -84,13 +69,6 @@ const addNewMerch = async () => {