diff --git a/packages/twenty-front/src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx b/packages/twenty-front/src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx index 00d3fb999..b0e91ff8d 100644 --- a/packages/twenty-front/src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx +++ b/packages/twenty-front/src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx @@ -25,6 +25,7 @@ import { initialComputedColumnsSelector } from '@/spreadsheet-import/steps/compo import { UnmatchColumn } from '@/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn'; import { SpreadsheetImportStep } from '@/spreadsheet-import/steps/types/SpreadsheetImportStep'; import { SpreadsheetImportStepType } from '@/spreadsheet-import/steps/types/SpreadsheetImportStepType'; +import { ScrollWrapper } from '@/ui/utilities/scroll/components/ScrollWrapper'; import { useRecoilState } from 'recoil'; import { ColumnGrid } from './components/ColumnGrid'; import { TemplateColumn } from './components/TemplateColumn'; @@ -326,37 +327,43 @@ export const MatchColumnsStep = ({ return ( <> - - - ( - row[columns[columnIndex].index], - )} - /> - )} - renderTemplateColumn={(columns, columnIndex) => ( - - )} - renderUnmatchedColumn={(columns, columnIndex) => ( - - )} - /> - + + + + ( + row[columns[columnIndex].index], + )} + /> + )} + renderTemplateColumn={(columns, columnIndex) => ( + + )} + renderUnmatchedColumn={(columns, columnIndex) => ( + + )} + /> + +