From a42b48dd30b293dabef30cbdca9e53421511aeb4 Mon Sep 17 00:00:00 2001 From: Muyue Date: Sat, 18 Oct 2025 23:56:09 +0200 Subject: [PATCH] Fix ReferenceError: remove dead documentVersions reference from store - Remove unused documentVersions assignment in getSession function - This variable was removed during cleanup but reference remained --- frontend/src/stores/collaboration.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/stores/collaboration.js b/frontend/src/stores/collaboration.js index bd50c3d..20734cf 100644 --- a/frontend/src/stores/collaboration.js +++ b/frontend/src/stores/collaboration.js @@ -126,7 +126,6 @@ export const useCollaborationStore = defineStore('collaboration', () => { currentDocument.value = data.currentDocument || '' currentRound.value = data.currentRound conversationHistory.value = data.conversationHistory - documentVersions.value = data.versions return data } catch (err) {