Skip to content

Commit

Permalink
dis is da wey
Browse files Browse the repository at this point in the history
  • Loading branch information
qweliant committed May 29, 2024
1 parent 9245bfb commit 5cb6780
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions integrations/evaluations/app/actions/respond/respond.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export const Respond = (props: Props) => {
submit the evaluation on our preferred schedule (by{" "}
<strong>
{new Date(
deadline.getTime() + 21 * (1000 * 60 * 60 * 24)
deadline.setDate(deadline.getDate() - 14)
).toLocaleDateString()}
</strong>
), you will receive a $100 “prompt evaluation bonus,” in addition to the
Expand Down Expand Up @@ -284,7 +284,7 @@ export const Respond = (props: Props) => {
, and you submit by{" "}
<strong>
{new Date(
deadline.getTime() + 21 * (1000 * 60 * 60 * 24)
deadline.setDate(deadline.getDate() - 14)
).toLocaleDateString()}
</strong>
, you will receive a $100 “prompt evaluation bonus,” in addition to the
Expand Down
4 changes: 1 addition & 3 deletions integrations/evaluations/lib/components/Process.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { EvaluatorWhoAccepted } from "../types";

type Props = {
deadline: Date;
managersNotes: string;
Expand All @@ -11,7 +9,7 @@ export const Process = (props: Props) => {
<p>
Early deadline, to be eligible for $100 prompt evaluation bonus (+$300 base):{" "}
{new Date(
props.deadline.getTime() + 21 * (1000 * 60 * 60 * 24)
props.deadline.setDate(props.deadline.getDate() - 14)
).toLocaleDateString()}
</p>
<p>
Expand Down

0 comments on commit 5cb6780

Please sign in to comment.