Skip to content

Commit 66cefef

Browse files
authored
fix: use correct date format for luxon (#994)
Reviewed-by: @ben-pr-p Reviewed-by: @kohlee
1 parent b79b8f3 commit 66cefef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/AssignmentSummary/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const AssignmentSummary: React.FC<Props> = (props) => {
108108
} = assignment.campaign;
109109
const { maxContacts } = assignment;
110110
const dueByText = dueBy
111-
? DateTime.fromISO(dueBy).toFormat("MMM D YYYY")
111+
? DateTime.fromISO(dueBy).toFormat("MMM d, yyyy")
112112
: "No Due Date";
113113
const subtitle = `${description} - ${dueByText}`;
114114

0 commit comments

Comments
 (0)