Skip to content

Commit 9e6c52f

Browse files
committed
useLocalString instead of toLocaleDateString
1 parent 07988a0 commit 9e6c52f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/components/code/TSQLResultsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function getFormattedValue(value: unknown, column: OutputColumnMetadata): string
108108
try {
109109
const date = new Date(value);
110110
// Format as a searchable string: "15 Jan 2026 12:34:56"
111-
return date.toLocaleDateString("en-GB", {
111+
return date.toLocaleString("en-GB", {
112112
day: "numeric",
113113
month: "short",
114114
year: "numeric",

0 commit comments

Comments
 (0)