From 1ab4d363873e0734d7613ca2c734486a41eae07d Mon Sep 17 00:00:00 2001 From: Martin Mark Date: Fri, 3 Jan 2025 12:01:19 -0500 Subject: [PATCH] Lint --- .../Home/Browse3/pages/CallsPage/CallsTable.tsx | 4 +++- .../Home/Browse3/pages/CallsPage/CallsTableButtons.tsx | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTable.tsx b/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTable.tsx index 005d32a3024..afa22fa5b39 100644 --- a/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTable.tsx +++ b/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTable.tsx @@ -1023,7 +1023,9 @@ export const CallsTable: FC<{ ); }, columnMenu: CallsCustomColumnMenu, - pagination: props => , + pagination: props => ( + + ), columnMenuSortDescendingIcon: IconSortDescending, columnMenuSortAscendingIcon: IconSortAscending, columnMenuHideIcon: IconNotVisible, diff --git a/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTableButtons.tsx b/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTableButtons.tsx index 0b228e3ce92..64f072c1ff9 100644 --- a/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTableButtons.tsx +++ b/weave-js/src/components/PagePanelComponents/Home/Browse3/pages/CallsPage/CallsTableButtons.tsx @@ -27,6 +27,7 @@ import classNames from 'classnames'; import React, {Dispatch, FC, SetStateAction, useRef, useState} from 'react'; import * as userEvents from '../../../../../../integrations/analytics/userEvents'; +import {usePeekLocation} from '../../context'; import {useWFHooks} from '../wfReactInterface/context'; import {Query} from '../wfReactInterface/traceServerClientInterface/query'; import { @@ -36,7 +37,6 @@ import { import {CallFilter} from '../wfReactInterface/wfDataModelHooksInterface'; import {WFHighLevelCallFilter} from './callsTableFilter'; import {useFilterSortby} from './callsTableQuery'; -import {usePeekLocation} from '../../context'; const MAX_EXPORT = 10_000;