Skip to content

Commit 0b474de

Browse files
committed
fix: unnecessary code
1 parent eb38e18 commit 0b474de

3 files changed

Lines changed: 0 additions & 9 deletions

File tree

packages/kbn-unified-data-table/src/components/data_table_footer.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,6 @@ export const UnifiedDataTableFooter: FC<PropsWithChildren<UnifiedDataTableFooter
6464
return null;
6565
}
6666

67-
console.log({
68-
rowCount,
69-
sampleSize,
70-
MAX_LOADED_GRID_ROWS,
71-
});
72-
7367
// allow to fetch more records for UnifiedDataTable
7468
if (onFetchMoreRecords && typeof isLoadingMore === 'boolean') {
7569
if (rowCount <= MAX_LOADED_GRID_ROWS - sampleSize) {

x-pack/plugins/security_solution/public/common/store/store.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ export const createStoreFactory = async (
9494
dataViewId: `${DEFAULT_DATA_VIEW_ID}-${(await startPlugins.spaces?.getActiveSpace())?.id}`,
9595
});
9696

97-
console.log({ sourcererDataViews });
98-
9997
if (sourcererDataViews === undefined) {
10098
throw new Error('');
10199
}

x-pack/plugins/security_solution/public/sourcerer/containers/use_init_sourcerer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export const useInitSourcerer = (
4343
const { addError, addWarning } = useAppToasts();
4444

4545
useEffect(() => {
46-
debugger;
4746
if (defaultDataView.error != null) {
4847
addWarning({
4948
title: i18n.translate('xpack.securitySolution.sourcerer.permissions.title', {

0 commit comments

Comments
 (0)