Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rgba committed Jan 3, 2025
1 parent cb1acfe commit 1ab4d36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,9 @@ export const CallsTable: FC<{
);
},
columnMenu: CallsCustomColumnMenu,
pagination: props => <PaginationButtons hideControls={hideControls} />,
pagination: props => (
<PaginationButtons hideControls={hideControls} />
),
columnMenuSortDescendingIcon: IconSortDescending,
columnMenuSortAscendingIcon: IconSortAscending,
columnMenuHideIcon: IconNotVisible,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;

Expand Down

0 comments on commit 1ab4d36

Please sign in to comment.