Skip to content

Commit 1bb65df

Browse files
authored
Merge pull request #309 from HackBeanpot/alina/fixes
hotfix
2 parents 649dd1e + b58b386 commit 1bb65df

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

components/dashboard/application-status-dialogue/ApplicationStatusDialogue.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ type IncompleteProps = {
3939
registrationClosed: Date;
4040
};
4141
export const Incomplete: React.FC<IncompleteProps> = ({ registrationClosed }) => {
42-
const date = format(registrationClosed);
42+
// const date = format(registrationClosed);
43+
const date = registrationClosed.toLocaleString('en-US', {
44+
timeZone: 'America/New_York',
45+
dateStyle: 'full',
46+
});
4347
return (
4448
<>
4549
<Alert

0 commit comments

Comments
 (0)