clean up imports
This commit is contained in:
parent
325583e4d7
commit
ee0272b387
4 changed files with 4 additions and 7 deletions
|
@ -1,6 +1,5 @@
|
|||
<script>
|
||||
import { CloudIcon } from "svelte-feather-icons";
|
||||
import { gatewayStatus, showSidebar, selectedChannel, smallViewport, showChannelView, theme, showPresenceSidebar } from "../stores";
|
||||
import { showSidebar, selectedChannel, smallViewport, showChannelView, theme, showPresenceSidebar } from "../stores";
|
||||
import ChannelView from "./ChannelView.svelte";
|
||||
import OverlayProvider from "./overlays/OverlayProvider.svelte";
|
||||
import PresenceSidebar from "./PresenceSidebar.svelte";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script>
|
||||
import { ArrowUpIcon, SendIcon } from "svelte-feather-icons";
|
||||
import { ArrowUpIcon } from "svelte-feather-icons";
|
||||
import request from "../request";
|
||||
import { apiRoute } from "../storage";
|
||||
import { messagesStoreProvider, overlayStore, smallViewport, typingStore, userInfoStore } from "../stores";
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
import { ArrowLeftIcon, AtSignIcon } from "svelte-feather-icons";
|
||||
import { quadInOut } from "svelte/easing";
|
||||
import { maybeFly, maybeFlyIf } from "../animations";
|
||||
import { presenceStore, showChannelView, showPresenceSidebar, smallViewport } from "../stores";
|
||||
|
||||
let pendingExit = false;
|
||||
import { presenceStore, showPresenceSidebar, smallViewport } from "../stores";
|
||||
|
||||
const close = () => {
|
||||
$showPresenceSidebar = false;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
import { HashIcon, PlusIcon, MoreVerticalIcon, SettingsIcon, CloudIcon } from "svelte-feather-icons";
|
||||
import { quadInOut } from "svelte/easing";
|
||||
import { maybeFly, maybeFlyIf } from "../animations";
|
||||
import { channels, gatewayStatus, overlayStore, selectedChannel, showChannelView, showSidebar, smallViewport, userInfoStore } from "../stores";
|
||||
import { channels, gatewayStatus, overlayStore, selectedChannel, showSidebar, smallViewport, userInfoStore } from "../stores";
|
||||
import UserTopBar from "./UserTopBar.svelte";
|
||||
|
||||
const selectChannel = (channel) => {
|
||||
|
|
Loading…
Reference in a new issue