diff --git a/integrations/evaluations/app/actions/respond/respond.tsx b/integrations/evaluations/app/actions/respond/respond.tsx index 4b30a3d7c..7ca858844 100644 --- a/integrations/evaluations/app/actions/respond/respond.tsx +++ b/integrations/evaluations/app/actions/respond/respond.tsx @@ -237,7 +237,7 @@ export const Respond = (props: Props) => { submit the evaluation on our preferred schedule (by{" "} {new Date( - deadline.getTime() + 21 * (1000 * 60 * 60 * 24) + deadline.setDate(deadline.getDate() - 14) ).toLocaleDateString()} ), you will receive a $100 “prompt evaluation bonus,” in addition to the @@ -284,7 +284,7 @@ export const Respond = (props: Props) => { , and you submit by{" "} {new Date( - deadline.getTime() + 21 * (1000 * 60 * 60 * 24) + deadline.setDate(deadline.getDate() - 14) ).toLocaleDateString()} , you will receive a $100 “prompt evaluation bonus,” in addition to the diff --git a/integrations/evaluations/lib/components/Process.tsx b/integrations/evaluations/lib/components/Process.tsx index ff451c1ea..c8ac3d0bb 100644 --- a/integrations/evaluations/lib/components/Process.tsx +++ b/integrations/evaluations/lib/components/Process.tsx @@ -1,5 +1,3 @@ -import { EvaluatorWhoAccepted } from "../types"; - type Props = { deadline: Date; managersNotes: string; @@ -11,7 +9,7 @@ export const Process = (props: Props) => {

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()}