solid-primitives

This commit is contained in:
tonyrewin 2023-01-20 13:53:35 +03:00
parent 9722c031a1
commit cdb0bab8c3
2 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import { Popup } from '../_shared/Popup'
import { AuthorCard } from '../Author/Card' import { AuthorCard } from '../Author/Card'
import { loadReactionsBy, REACTIONS_AMOUNT_PER_PAGE } from '../../stores/zine/reactions' import { loadReactionsBy, REACTIONS_AMOUNT_PER_PAGE } from '../../stores/zine/reactions'
import { apiClient } from '../../utils/apiClient' import { apiClient } from '../../utils/apiClient'
import Comment from '../Article/Comment' import { Comment } from '../Article/Comment'
// TODO: load reactions on client // TODO: load reactions on client
type AuthorProps = { type AuthorProps = {

View File

@ -14,7 +14,8 @@ import type {
QueryLoadRecipientsArgs, QueryLoadRecipientsArgs,
User, User,
ProfileInput, ProfileInput,
ReactionInput ReactionInput,
ReactionBy
} from '../graphql/types.gen' } from '../graphql/types.gen'
import { publicGraphQLClient } from '../graphql/publicGraphQLClient' import { publicGraphQLClient } from '../graphql/publicGraphQLClient'
import { getToken, privateGraphQLClient } from '../graphql/privateGraphQLClient' import { getToken, privateGraphQLClient } from '../graphql/privateGraphQLClient'