fix-linter
This commit is contained in:
parent
75af4d5ce0
commit
978eb1e4d9
|
@ -14,7 +14,7 @@ import '../../styles/Inbox.scss'
|
||||||
// Для моков
|
// Для моков
|
||||||
import { createClient } from '@urql/core'
|
import { createClient } from '@urql/core'
|
||||||
import Message from '../Inbox/Message'
|
import Message from '../Inbox/Message'
|
||||||
import { loadAuthorsBy, loadChats, setChats } from '../../stores/inbox'
|
import { loadAuthorsBy, loadChats, chats, setChats } from '../../stores/inbox'
|
||||||
|
|
||||||
const md = new MarkdownIt({
|
const md = new MarkdownIt({
|
||||||
linkify: true
|
linkify: true
|
||||||
|
@ -67,7 +67,6 @@ export const InboxView = () => {
|
||||||
const [postMessageText, setPostMessageText] = createSignal('')
|
const [postMessageText, setPostMessageText] = createSignal('')
|
||||||
const [loading, setLoading] = createSignal<boolean>(false)
|
const [loading, setLoading] = createSignal<boolean>(false)
|
||||||
const [currentSlug, setCurrentSlug] = createSignal<Author['slug'] | null>()
|
const [currentSlug, setCurrentSlug] = createSignal<Author['slug'] | null>()
|
||||||
const [chats, setChats] = createSignal<Chat[] | []>([])
|
|
||||||
|
|
||||||
const { session } = useSession()
|
const { session } = useSession()
|
||||||
createEffect(() => {
|
createEffect(() => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user