Fix ReferenceError: remove dead documentVersions reference from store

- Remove unused documentVersions assignment in getSession function
- This variable was removed during cleanup but reference remained
This commit is contained in:
Augustin ROUX 2025-10-18 23:56:09 +02:00
parent 9fa10f1072
commit a42b48dd30

View File

@ -126,7 +126,6 @@ export const useCollaborationStore = defineStore('collaboration', () => {
currentDocument.value = data.currentDocument || '' currentDocument.value = data.currentDocument || ''
currentRound.value = data.currentRound currentRound.value = data.currentRound
conversationHistory.value = data.conversationHistory conversationHistory.value = data.conversationHistory
documentVersions.value = data.versions
return data return data
} catch (err) { } catch (err) {