File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 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
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 {
You can’t perform that action at this time.
0 commit comments