[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:
Zoë Bijl
2025-10-12 13:42:02 +02:00
committed by tobi
parent 75d7a62693
commit 1ff70886a1
975 changed files with 22196 additions and 21964 deletions
@@ -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 }));