Skip to content

Commit a73ccff

Browse files
committed
remove unneeded
1 parent 81bab83 commit a73ccff

File tree

1 file changed

+1
-1
lines changed
  • packages/cubejs-backend-shared/src

1 file changed

+1
-1
lines changed

packages/cubejs-backend-shared/src/time.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export const extractDate = (data: any): string | null => {
268268
if (!value) {
269269
return value;
270270
}
271-
return moment.tz(value, 'UTC').utc().format(moment.HTML5_FMT.DATETIME_LOCAL_MS);
271+
return moment.tz(value, 'UTC').format(moment.HTML5_FMT.DATETIME_LOCAL_MS);
272272
};
273273

274274
export const addSecondsToLocalTimestamp = (timestamp: string, timezone: string, seconds: number): Date => {

0 commit comments

Comments
 (0)