From 761a980db7f4e29b951e21da5eda814f2a42819c Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Mon, 29 Jan 2024 13:15:02 +0300 Subject: [PATCH] Update EditCell.jsx --- apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index e6cbef47bd..ced6f822a0 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -133,11 +133,9 @@ const PageCellStyle = props => { const storeCellSettings = props.storeCellSettings; const styleName = storeCellSettings.styleName; const cellStyles = storeCellSettings.cellStyles; - console.log(cellStyles); const countStylesSlide = Device.phone ? 6 : 15; const countSlides = Math.floor(cellStyles.length / countStylesSlide); const arraySlides = Array(countSlides).fill(countSlides); - console.log(arraySlides); return ( @@ -1172,4 +1170,4 @@ export { CellStyle, CustomFormats, PageCreationCustomFormat -}; \ No newline at end of file +};