Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-10-28 23:47:31 +01:00
parent 81ffbc1e31
commit c75451efaf
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,7 @@
import type { PaginationParams } from './common';
import { UpdateInteractionPoliciesParams } from './settings';
import type { PaginationParams } from './common';
interface CreateStatusWithContent {
/** The text content of the status. If `media_ids` is provided, this becomes optional. Attaching a `poll` is optional while `status` is provided. */
status: string;

View file

@ -37,7 +37,6 @@ type IMenuItem = {
action?: (event: React.MouseEvent) => void;
}
const getOtherAccounts = createSelector([
(state: RootState) => state.auth.users,
(state: RootState) => state.entities[Entities.ACCOUNTS]?.store,