newStartTime ? formatISO()

in frontend/app/DeliverablesDash/DeliverablesDashFront.tsx [94:113]


        newStartTime ? formatISO(set(newStartTime, zeroTimePart)) : undefined,
      ],
      [
        "until",
        newFinishTime ? formatISO(set(newFinishTime, lateTimePart)) : undefined,
      ],
    ].filter((entry) => !!entry[1]);

    if (params.length > 0) {
      const paramString = params
        .map((kv) =>
          kv[0] && kv[1]
            ? `${encodeURIComponent(kv[0])}=${encodeURIComponent(kv[1])}`
            : ""
        )
        .join("&");
      history.push("?" + paramString);
    } else {
      history.push("/dash");
    }