Skip to content

Commit

Permalink
Patch officers not being able to see club application preview
Browse files Browse the repository at this point in the history
  • Loading branch information
julianweng committed Sep 5, 2024
1 parent 6c0dc7d commit 8cd7b84
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ const ApplicationPage = ({
questions,
initialValues,
}: ApplicationPageProps): ReactElement => {
if (new Date() < new Date(application.application_start_time)) {
// Second condition will be replaced with perms check or question nullity check once backend is updated
// eslint-disable-next-line no-constant-condition
if (new Date() < new Date(application.application_start_time) && false) {
return (
<Container paddingTop>
<Title>Application Not Open</Title>
Expand Down

0 comments on commit 8cd7b84

Please sign in to comment.