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

View File

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