Skip to content

Commit

Permalink
Warn when unrecognized timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
brettimus committed Dec 11, 2024
1 parent 23fd648 commit 5c67a16
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions studio/src/pages/RequestorPage/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ const normalizeTimestamp = (timestamp: string): string => {
}

// Return original timestamp if format is unknown
console.warn(
"[normalizeTimestamp] Warning: Unrecognized timestamp format",
timestamp,
);
return timestamp;
};

Expand Down

0 comments on commit 5c67a16

Please sign in to comment.