Lint all the things

This commit is contained in:
Dave
2025-08-19 16:23:29 -04:00
parent f6d6b548be
commit 33fb60ca1a
640 changed files with 2129 additions and 3927 deletions

View File

@@ -1,5 +1,5 @@
import { Button, Card, Col, Input, Table, Typography } from "antd";
import React, { useState } from "react";
import { useState } from "react";
import { useTranslation } from "react-i18next";
export default function ProfileShopsComponent({ loading, data, updateActiveShop }) {

View File

@@ -1,5 +1,4 @@
import { useMutation, useQuery } from "@apollo/client";
import React from "react";
import { logImEXEvent, messaging } from "../../firebase/firebase.utils";
import { QUERY_ALL_ASSOCIATIONS, UPDATE_ACTIVE_ASSOCIATION } from "../../graphql/associations.queries";
import AlertComponent from "../alert/alert.component";
@@ -15,9 +14,9 @@ const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop,
currentUser: selectCurrentUser
});
const mapDispatchToProps = (dispatch) => ({
//setUserLanguage: language => dispatch(setUserLanguage(language))
});
const mapDispatchToProps = () => ({});
export default connect(mapStateToProps, mapDispatchToProps)(ProfileShopsContainer);
export function ProfileShopsContainer({ bodyshop, currentUser }) {
@@ -42,7 +41,7 @@ export function ProfileShopsContainer({ bodyshop, currentUser }) {
imexshopid: bodyshop.imexshopid,
type: "messaging"
});
} catch (error) {
} catch {
console.log("No FCM token. Skipping unsubscribe.");
}