Skip to content

Commit c96afa0

Browse files
committed
Fix linting
1 parent 242bf73 commit c96afa0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

resources/js/Components/TextareaHome.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ import { CdxIcon, CdxMessage, CdxTextArea, CdxField, CdxProgressBar } from "@wik
3232
export default defineComponent({
3333
components: {
3434
CdxField,
35-
CdxIcon,
36-
CdxMessage,
3735
CdxProgressBar,
3836
CdxTextArea,
3937
},

resources/js/Pages/Home.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@
153153
}
154154
const store = useStore();
155155
store.saveSearchedIds( this.textareaInputValue );
156-
this.$inertia.get( '/results', { ids: (this.$refs.textarea as InstanceType<typeof TextareaHome>).serializeInput() } );
156+
this.$inertia.get( '/results',
157+
{ ids: (this.$refs.textarea as InstanceType<typeof TextareaHome>).serializeInput() }
158+
);
157159
},
158160
showRandom(): void {
159161
this.$inertia.get( '/random' );

0 commit comments

Comments
 (0)