Merge pull request 'fix: collection store' (#3) from fix/collection-store into main

Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
2026-02-18 00:13:49 +00:00

View File

@@ -8,7 +8,7 @@ import { collectionService } from '../services'
import { CollectionObject, CollectionPropertiesObject } from '../models/collection'
import type { SourceSelector, ListFilter, ListSort } from '../types'
export const useCollectionsStore = defineStore('mailCollectionsStore', () => {
export const useCollectionsStore = defineStore('chronoCollectionsStore', () => {
// State
const _collections = ref<Record<string, CollectionObject>>({})
const transceiving = ref(false)