Skip to content

Commit bb33e17

Browse files
committed
[Linter] Fix errors
1 parent 70eeba1 commit bb33e17

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

src/components/admin/texts/TextBrowser.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<script setup lang="ts">
2+
import {
3+
RouterLink
4+
} from 'vue-router';
25
import type {
36
ShallowReadingSessionDto
47
} from '@/types/dtos/ShallowReadingSessionDto';
@@ -15,9 +18,6 @@
1518
import {
1619
useSurveyStore
1720
} from '@/ts/stores/admin';
18-
import {
19-
RouterLink
20-
} from 'vue-router';
2121
2222
interface Text {
2323
'sessions': ShallowReadingSessionDto[];

src/components/admin/texts/TextUpload.vue

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
computed,
1414
ref
1515
} from 'vue';
16-
import {
17-
adminBaseRoute
18-
} from '../adminConfig';
19-
import router from '@/ts/router';
2016
import {
2117
useNotification
2218
} from '@kyvg/vue3-notification';
@@ -146,10 +142,6 @@
146142
index.value++;
147143
};
148144
149-
const goToOptions = () => {
150-
router.push( adminBaseRoute + 'texts-options' );
151-
};
152-
153145
const annotationsLoadTrigger = () => {
154146
// TODO import
155147
notifications.notify( {

0 commit comments

Comments
 (0)