Please eslint

This commit is contained in:
Owen
2026-09-03 10:51:46 -04:00
parent 49d5b0ec34
commit 4dada38cb0
4 changed files with 2 additions and 4 deletions
@@ -984,7 +984,7 @@ async function listLabelGroups(
).length;
}
let groups: LauncherGroup[] = Array.from(labelCountMap.values()).map(
const groups: LauncherGroup[] = Array.from(labelCountMap.values()).map(
(row) => ({
groupKey: String(row.labelId),
name: row.name,
+1 -1
View File
@@ -80,7 +80,7 @@ export async function buildSiteConfigurationForOlmClient(
);
const siteResourcesBySiteId = new Map<number, SiteResource[]>();
let siteResourcesForExitNode = [];
const siteResourcesForExitNode = [];
for (const row of allClientSiteResources) {
if (row.siteResource.requiresExitNodeConnection) {
siteResourcesForExitNode.push(row.siteResource);
-1
View File
@@ -378,7 +378,6 @@ function EditAttachmentCredenza({
setModelSearch("");
pendingSeedRef.current = false;
// Only re-init when opening or switching which attachment is edited.
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [open, attachment.providerId]);
useEffect(() => {
-1
View File
@@ -319,7 +319,6 @@ export function LogDataTable<TData, TValue>({
const pageIndex = table.getState().pagination.pageIndex;
useEffect(() => {
setExpandedRows(new Set());
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [pageIndex]);
const handleTabChange = (value: string) => {