diff --git a/src/libs/SearchUIUtils.ts b/src/libs/SearchUIUtils.ts index e73a1e6ab4148..45bd9a996a318 100644 --- a/src/libs/SearchUIUtils.ts +++ b/src/libs/SearchUIUtils.ts @@ -4606,7 +4606,7 @@ function getTableMinWidth(columns: SearchColumnType[]) { } else if (column === CONST.SEARCH.TABLE_COLUMNS.TYPE) { minWidth += 20; } else if (column === CONST.SEARCH.TABLE_COLUMNS.REIMBURSABLE || column === CONST.SEARCH.TABLE_COLUMNS.BILLABLE) { - minWidth += 92; + minWidth += 80; } else { minWidth += 200; } diff --git a/src/styles/utils/index.ts b/src/styles/utils/index.ts index 9ee72a3f13860..8b563ab272052 100644 --- a/src/styles/utils/index.ts +++ b/src/styles/utils/index.ts @@ -1861,7 +1861,7 @@ const createStyleUtils = (theme: ThemeColors, styles: ThemeStyles) => ({ break; case CONST.SEARCH.TABLE_COLUMNS.REIMBURSABLE: case CONST.SEARCH.TABLE_COLUMNS.BILLABLE: - columnWidth = {...getWidthStyle(variables.w92)}; + columnWidth = {...getWidthStyle(variables.w80)}; break; case CONST.SEARCH.TABLE_COLUMNS.TAX_RATE: columnWidth = {...getWidthStyle(variables.w92), ...styles.flex1};