From 46a41a136779531665497dbef76d2c3fa7db818f Mon Sep 17 00:00:00 2001 From: Carlos Martins Date: Mon, 24 Jun 2024 12:03:46 -0600 Subject: [PATCH] fix date truncation --- src/styles/utils/index.ts | 2 +- src/styles/variables.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/utils/index.ts b/src/styles/utils/index.ts index 8132edcef7c5..f6f24404d928 100644 --- a/src/styles/utils/index.ts +++ b/src/styles/utils/index.ts @@ -1551,7 +1551,7 @@ const createStyleUtils = (theme: ThemeColors, styles: ThemeStyles) => ({ columnWidth = {...getWidthStyle(variables.w36), ...styles.alignItemsCenter}; break; case CONST.SEARCH.TABLE_COLUMNS.DATE: - columnWidth = getWidthStyle(shouldExtendDateColumn ? variables.w84 : variables.w52); + columnWidth = getWidthStyle(shouldExtendDateColumn ? variables.w92 : variables.w52); break; case CONST.SEARCH.TABLE_COLUMNS.MERCHANT: case CONST.SEARCH.TABLE_COLUMNS.FROM: diff --git a/src/styles/variables.ts b/src/styles/variables.ts index c3a384f49fc3..c345517adf3e 100644 --- a/src/styles/variables.ts +++ b/src/styles/variables.ts @@ -250,6 +250,6 @@ export default { w44: 44, w52: 52, w80: 80, - w84: 84, + w92: 92, w96: 96, } as const;