We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 649dd1e + b58b386 commit 1bb65dfCopy full SHA for 1bb65df
1 file changed
components/dashboard/application-status-dialogue/ApplicationStatusDialogue.tsx
@@ -39,7 +39,11 @@ type IncompleteProps = {
39
registrationClosed: Date;
40
};
41
export const Incomplete: React.FC<IncompleteProps> = ({ registrationClosed }) => {
42
- const date = format(registrationClosed);
+ // const date = format(registrationClosed);
43
+ const date = registrationClosed.toLocaleString('en-US', {
44
+ timeZone: 'America/New_York',
45
+ dateStyle: 'full',
46
+ });
47
return (
48
<>
49
<Alert
0 commit comments