Skip to content

Commit

Permalink
[fix] Fix date for closing application from Sat to Tue (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
taigakiyokawa authored Jan 26, 2023
1 parent 2515bf5 commit a71cb60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/organisms/SpeakersSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const SpeakersSection: FC = () => {
<Typography variant="h2">Call for Speakers!</Typography>
<Box mb={1}>
<Typography variant="body2">{t('application_started')}: 2022.12.01 Thu</Typography>
<Typography variant="body2">{t('application_closed')}: 2023.01.31 Sat</Typography>
<Typography variant="body2">{t('application_closed')}: 2023.01.31 Tue</Typography>
</Box>
<Box display="grid" gridTemplateColumns={isTabletOrOver ? '1fr 1fr 1fr' : '1fr'} gap={2}>
{isTabletOrOver && (
Expand Down

0 comments on commit a71cb60

Please sign in to comment.