fix-linter

This commit is contained in:
tonyrewin 2022-11-23 08:38:55 +03:00
parent 75af4d5ce0
commit 978eb1e4d9

View File

@ -14,7 +14,7 @@ import '../../styles/Inbox.scss'
// Для моков
import { createClient } from '@urql/core'
import Message from '../Inbox/Message'
import { loadAuthorsBy, loadChats, setChats } from '../../stores/inbox'
import { loadAuthorsBy, loadChats, chats, setChats } from '../../stores/inbox'
const md = new MarkdownIt({
linkify: true
@ -67,7 +67,6 @@ export const InboxView = () => {
const [postMessageText, setPostMessageText] = createSignal('')
const [loading, setLoading] = createSignal<boolean>(false)
const [currentSlug, setCurrentSlug] = createSignal<Author['slug'] | null>()
const [chats, setChats] = createSignal<Chat[] | []>([])
const { session } = useSession()
createEffect(() => {