store: don't duplicate import

This commit is contained in:
Reto Brunner 2024-04-13 22:32:18 +02:00
parent 14b9169899
commit 4d0474b897

View file

@ -3,12 +3,11 @@
import {ActionContext, createStore, Store, useStore as baseUseStore} from "vuex";
import {createSettingsStore} from "./store-settings";
import storage from "./localStorage";
import type {ClientChan, ClientNetwork, NetChan, ClientMention} from "./types";
import type {ClientChan, ClientNetwork, NetChan, ClientMention, ClientMessage} from "./types";
import type {InjectionKey} from "vue";
import {SettingsState} from "./settings";
import {SearchQuery} from "../../shared/types/storage";
import {ClientMessage} from "./types";
import {SharedConfiguration, LockedSharedConfiguration} from "../../shared/types/config";
const appName = document.title;