From 5c867303e081cc4bef7ccdfd78970a5489bbeb18 Mon Sep 17 00:00:00 2001 From: BOHEUS <56270748+BOHEUS@users.noreply.github.com> Date: Wed, 8 Apr 2026 14:48:04 +0000 Subject: [PATCH] Fix documentation about importing dates (#19434) Related to https://github.com/twentyhq/core-team-issues/issues/2364 --- .../data-migration/how-tos/fix-import-errors.mdx | 8 ++++---- .../data-migration/how-tos/prepare-your-csv-files.mdx | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/twenty-docs/user-guide/data-migration/how-tos/fix-import-errors.mdx b/packages/twenty-docs/user-guide/data-migration/how-tos/fix-import-errors.mdx index 7625b0fbc9..d66a8563c3 100644 --- a/packages/twenty-docs/user-guide/data-migration/how-tos/fix-import-errors.mdx +++ b/packages/twenty-docs/user-guide/data-migration/how-tos/fix-import-errors.mdx @@ -127,12 +127,12 @@ The data doesn't match the expected format for that field type. #### Date **Problem:** Unrecognized date format -**Solution:** Use consistent format throughout file +**Solution:** Use `YYYY-MM-DD` format consistently throughout file ``` -✓ 2024-03-15 (YYYY-MM-DD - recommended) -✓ 03/15/2024 (MM/DD/YYYY) -✓ 15/03/2024 (DD/MM/YYYY) +✓ 2024-03-15 (YYYY-MM-DD) +❌ 03/15/2024 (MM/DD/YYYY) +❌ 15/03/2024 (DD/MM/YYYY) ``` #### Phone diff --git a/packages/twenty-docs/user-guide/data-migration/how-tos/prepare-your-csv-files.mdx b/packages/twenty-docs/user-guide/data-migration/how-tos/prepare-your-csv-files.mdx index 146ffa1c16..ddf548abf6 100644 --- a/packages/twenty-docs/user-guide/data-migration/how-tos/prepare-your-csv-files.mdx +++ b/packages/twenty-docs/user-guide/data-migration/how-tos/prepare-your-csv-files.mdx @@ -93,8 +93,6 @@ Address is a **nested field** with multiple columns (some can be left empty): ### Date Fields Use consistent formatting throughout your file: - `YYYY-MM-DD` (recommended): `2024-03-15` -- `MM/DD/YYYY`: `03/15/2024` -- `DD/MM/YYYY`: `15/03/2024` - ISO 8601: `2024-03-15T10:30:00Z` ### Number Fields