Skip to content

Commit

Permalink
fix: duplicate review alignment (#4129)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed Jun 11, 2024
1 parent 0d5f01b commit b2e7778
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sites/partners/src/pages/application/[id]/review.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,14 @@ const Flag = () => {
<section className={"w-full"}>
<Button
variant="primary"
className="w-full"
onClick={() => setSaveModalOpen(true)}
id={"save-set-button"}
>
{t("t.save")}
</Button>
{data?.updatedAt && (
<div className="border-t text-xs flex items-center justify-center md:mt-0 mt-4 pt-4">
<div className="border-t text-xs flex items-center justify-center mt-4 pt-4">
{t("t.lastUpdated")}: {dayjs(data?.updatedAt).format("MMMM DD, YYYY")}
</div>
)}
Expand Down

0 comments on commit b2e7778

Please sign in to comment.