diff options
Diffstat (limited to 'apps/files/src/store/paths.ts')
-rw-r--r-- | apps/files/src/store/paths.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/src/store/paths.ts b/apps/files/src/store/paths.ts index 1b86c69ac57..d678b5bc592 100644 --- a/apps/files/src/store/paths.ts +++ b/apps/files/src/store/paths.ts @@ -19,12 +19,12 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ -import { Node, getNavigation } from '@nextcloud/files' import type { FileId, PathsStore, PathOptions, ServicesState } from '../types' import { defineStore } from 'pinia' +import { Node, getNavigation } from '@nextcloud/files' +import { subscribe } from '@nextcloud/event-bus' import Vue from 'vue' import logger from '../logger' -import { subscribe } from '@nextcloud/event-bus' export const usePathsStore = function(...args) { const store = defineStore('paths', { |