yarn lint:js --fix

environments/review-eslint-upg-2n6vag/deployments/3889
Alex Gleason 2023-09-16 12:20:19 -05:00
rodzic 64ded8039f
commit 1640c2bc87
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
6 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -11,8 +11,8 @@ import { selectCache, selectListState, useListState } from '../selectors';
import { parseEntitiesPath } from './utils';
import type { Entity } from '../types';
import type { EntitiesPath, EntityFn, EntitySchema, ExpandedEntitiesPath } from './types';
import type { Entity } from '../types';
import type { RootState } from 'soapbox/store';
interface UseBatchedEntitiesOpts<TEntity extends Entity> {

Wyświetl plik

@ -8,8 +8,8 @@ import { importEntities } from '../actions';
import { parseEntitiesPath } from './utils';
import type { Entity } from '../types';
import type { EntityCallbacks, EntityFn, EntitySchema, ExpandedEntitiesPath } from './types';
import type { Entity } from '../types';
interface UseCreateEntityOpts<TEntity extends Entity = Entity> {
schema?: EntitySchema<TEntity>

Wyświetl plik

@ -14,8 +14,8 @@ import { selectEntities, selectListState, useListState } from '../selectors';
import { parseEntitiesPath } from './utils';
import type { Entity } from '../types';
import type { EntityFn, EntitySchema, ExpandedEntitiesPath } from './types';
import type { Entity } from '../types';
/** Additional options for the hook. */
interface UseEntitiesOpts<TEntity extends Entity> {

Wyświetl plik

@ -9,8 +9,8 @@ import { useLoading } from 'soapbox/hooks/useLoading';
import { importEntities } from '../actions';
import { selectEntity } from '../selectors';
import type { Entity } from '../types';
import type { EntitySchema, EntityPath, EntityFn } from './types';
import type { Entity } from '../types';
/** Additional options for the hook. */
interface UseEntityOpts<TEntity extends Entity> {

Wyświetl plik

@ -4,8 +4,8 @@ import { useCreateEntity } from './useCreateEntity';
import { useDeleteEntity } from './useDeleteEntity';
import { parseEntitiesPath } from './utils';
import type { Entity } from '../types';
import type { EntitySchema, ExpandedEntitiesPath } from './types';
import type { Entity } from '../types';
interface UseEntityActionsOpts<TEntity extends Entity = Entity> {
schema?: EntitySchema<TEntity>

Wyświetl plik

@ -8,9 +8,9 @@ import { useDebounce, useFeatures } from 'soapbox/hooks';
import { IChat, useChats } from 'soapbox/queries/chats';
import ChatList from '../chat-list';
import ChatSearchInput from '../chat-search-input';
import ChatSearch from '../chat-search/chat-search';
import EmptyResultsBlankslate from '../chat-search/empty-results-blankslate';
import ChatSearchInput from '../chat-search-input';
import ChatPaneHeader from '../chat-widget/chat-pane-header';
import ChatWindow from '../chat-widget/chat-window';
import ChatSearchHeader from '../chat-widget/headers/chat-search-header';