aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/EditorLists.svelte4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/components/EditorLists.svelte b/src/components/EditorLists.svelte
index 6eb248f..2c5ca6c 100644
--- a/src/components/EditorLists.svelte
+++ b/src/components/EditorLists.svelte
@@ -60,8 +60,6 @@
function assignLab(id: number) {
selectedPeerTeacher?.labs.add(id);
- // Self assignemnt to update `assignedLabs` and `compatibleLabs`
- selectedPeerTeacher = selectedPeerTeacher;
// Mark lab as assigned
const lab = $labStore.get(id);
@@ -75,8 +73,6 @@
function unassignLab(id: number) {
selectedPeerTeacher?.labs.delete(id);
- // Self assignemnt to update `assignedLabs` and `compatibleLabs`
- selectedPeerTeacher = selectedPeerTeacher;
// Mark lab as unassigned
const lab = $labStore.get(id);