Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 209066c

Browse files
committed
fix: lint
1 parent 9f52f0b commit 209066c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/utils/format.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,10 @@ export const formatJobDate = (startDate, duration) => {
233233
const dateStr = startDate ? moment(startDate).format(DAY_FORMAT) : "";
234234

235235
if (startDate && duration) {
236-
return `Requested starting ${dateStr} for ${formatPlural(duration, "week")}`;
236+
return `Requested starting ${dateStr} for ${formatPlural(
237+
duration,
238+
"week"
239+
)}`;
237240
} else if (startDate) {
238241
return `Requested starting ${dateStr}`;
239242
} else if (duration) {

0 commit comments

Comments
 (0)