[build] upgrade eslint to 9.37.0 (#88)
Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import { connect } from 'react-redux';
|
||||
import { connect } from "react-redux";
|
||||
|
||||
import { fetchRelationships } from 'mastodon/actions/accounts';
|
||||
import { fetchRelationships } from "mastodon/actions/accounts";
|
||||
|
||||
import { openDropdownMenu, closeDropdownMenu } from '../actions/dropdown_menu';
|
||||
import { openModal, closeModal } from '../actions/modal';
|
||||
import DropdownMenu from '../components/dropdown_menu';
|
||||
import { isUserTouching } from '../is_mobile';
|
||||
import { openDropdownMenu, closeDropdownMenu } from "../actions/dropdown_menu";
|
||||
import { openModal, closeModal } from "../actions/modal";
|
||||
import DropdownMenu from "../components/dropdown_menu";
|
||||
import { isUserTouching } from "../is_mobile";
|
||||
|
||||
/**
|
||||
* @param {import('mastodon/store').RootState} state
|
||||
@@ -18,11 +18,11 @@ const mapStateToProps = state => ({
|
||||
const mapDispatchToProps = (dispatch, { status, items, scrollKey }) => ({
|
||||
onOpen(id, onItemClick, keyboard) {
|
||||
if (status) {
|
||||
dispatch(fetchRelationships([status.getIn(['account', 'id'])]));
|
||||
dispatch(fetchRelationships([status.getIn(["account", "id"])]));
|
||||
}
|
||||
|
||||
dispatch(isUserTouching() ? openModal({
|
||||
modalType: 'ACTIONS',
|
||||
modalType: "ACTIONS",
|
||||
modalProps: {
|
||||
status,
|
||||
actions: items,
|
||||
@@ -33,7 +33,7 @@ const mapDispatchToProps = (dispatch, { status, items, scrollKey }) => ({
|
||||
|
||||
onClose(id) {
|
||||
dispatch(closeModal({
|
||||
modalType: 'ACTIONS',
|
||||
modalType: "ACTIONS",
|
||||
ignoreFocus: false,
|
||||
}));
|
||||
dispatch(closeDropdownMenu({ id }));
|
||||
|
||||
Reference in New Issue
Block a user