Skip to content

Commit 1f0eac2

Browse files
committed
Fix linting errors
1 parent 282aedd commit 1f0eac2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

resources/js/Pages/Home.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,12 @@
100100

101101
<script setup lang="ts">
102102
import { Head as InertiaHead, usePage } from '@inertiajs/inertia-vue3';
103-
import { mapState } from 'pinia';
104103
import { useStore } from '../store';
105104
import { CdxDialog, CdxButton, CdxIcon, CdxMessage } from "@wikimedia/codex";
106105
import ItemIdSearchTextarea from '../Components/ItemIdSearchTextarea.vue';
107-
import { defineComponent, ref, computed } from 'vue';
106+
import { ref, computed } from 'vue';
108107
import type { Ref } from 'vue';
109108
import { Inertia } from '@inertiajs/inertia';
110-
import ValidationError from '../types/ValidationError';
111109
112110
interface ErrorMessages {
113111
[ key : string ] : string
@@ -121,7 +119,6 @@
121119
const store = useStore();
122120
const page = usePage();
123121
const textareaInputValue: Ref<string> = ref(store.lastSearchedIds);
124-
const validationError = ref(null);
125122
const faqDialog = ref(false);
126123
127124
function send(): void{

0 commit comments

Comments
 (0)