The application currently uses US date format: MM/D/YY → 03/2/26
This format is ambiguous for European users. For example, France and the UK use DD/MM/YYYY → 02/03/2026, making it unclear whether 03/2/26 means March 2nd or February 3rd.
Suggested solutions:
- Preferred:
DD MMM YYYY → 16 Feb 2026 (universally unambiguous)
- Alternative:
YYYY-MM-DD → 2026-02-16 (ISO 8601 standard)
Thank you for your work! :)
The application currently uses US date format:
MM/D/YY→03/2/26This format is ambiguous for European users. For example, France and the UK use DD/MM/YYYY → 02/03/2026, making it unclear whether 03/2/26 means March 2nd or February 3rd.
Suggested solutions:
DD MMM YYYY→16 Feb 2026(universally unambiguous)YYYY-MM-DD→2026-02-16(ISO 8601 standard)Thank you for your work! :)