diff --git a/packages/pl-api/lib/params/statuses.ts b/packages/pl-api/lib/params/statuses.ts index e9e35015b..b4ae3f0d9 100644 --- a/packages/pl-api/lib/params/statuses.ts +++ b/packages/pl-api/lib/params/statuses.ts @@ -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; diff --git a/packages/pl-fe/src/features/ui/components/profile-dropdown.tsx b/packages/pl-fe/src/features/ui/components/profile-dropdown.tsx index 10b5247e2..dc29bd8b0 100644 --- a/packages/pl-fe/src/features/ui/components/profile-dropdown.tsx +++ b/packages/pl-fe/src/features/ui/components/profile-dropdown.tsx @@ -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,