fix: lint

This commit is contained in:
kawamataryo
2024-10-17 23:02:15 +09:00
parent 98a6f0fea3
commit 1bd4b07c38
8 changed files with 104 additions and 14238 deletions

View File

@@ -3,7 +3,7 @@ import { BskyServiceWorkerClient } from "~lib/bskyServiceWorkerClient";
import {
ACTION_MODE,
BSKY_USER_MATCH_TYPE,
MESSAGE_NAMES,
type MESSAGE_NAMES,
MESSAGE_NAME_TO_ACTION_MODE_MAP,
MESSAGE_NAME_TO_QUERY_PARAM_MAP,
} from "~lib/constants";
@@ -222,6 +222,7 @@ export const useRetrieveBskyUsers = () => {
setLoading(true);
showModal();
},
// biome-ignore lint/correctness/useExhaustiveDependencies: todo
[startRetrieveLoop, showModal],
);
@@ -257,7 +258,7 @@ export const useRetrieveBskyUsers = () => {
[],
);
// biome-ignore lint/correctness/useExhaustiveDependencies: <explanation>
// biome-ignore lint/correctness/useExhaustiveDependencies: todo
const filteredUsers = React.useMemo(() => {
return users.filter((user) => {
return matchTypeFilter[user.matchType];