Fix linter errors

This commit is contained in:
Lorenz Padberg 2024-05-01 10:53:29 +02:00
parent 85d526cbef
commit e5c1440043
2 changed files with 0 additions and 4 deletions

View File

@ -22,7 +22,6 @@ describe('Project Page', () => {
appearance: 'yellow', appearance: 'yellow',
description: 'I am Groot', description: 'I am Groot',
slug: 'groot', slug: 'groot',
objectives: 'Be Groot\nBe awesome',
final: false, final: false,
student: { student: {
firstName: 'Rachel', firstName: 'Rachel',
@ -49,7 +48,6 @@ describe('Project Page', () => {
appearance: 'red', appearance: 'red',
description: 'I am Groot', description: 'I am Groot',
slug: 'groot', slug: 'groot',
objectives: 'Be Groot\nBe awesome',
final: false, final: false,
student: { student: {
firstName: 'Rachel', firstName: 'Rachel',

View File

@ -87,12 +87,10 @@ import { graphql } from '@/__generated__';
import highlightSidebar from '@/helpers/highlight-sidebar'; import highlightSidebar from '@/helpers/highlight-sidebar';
import { doUpdateHighlight } from '@/graphql/mutations'; import { doUpdateHighlight } from '@/graphql/mutations';
import Mark from 'mark.js'; import Mark from 'mark.js';
import { useRoute } from 'vue-router';
export interface Props { export interface Props {
module: ModuleNode; module: ModuleNode;
} }
const route = useRoute();
const props = defineProps<Props>(); const props = defineProps<Props>();
let selectionHandler: SelectionHandlerType; let selectionHandler: SelectionHandlerType;