Skip to content

Commit

Permalink
use comma instead of pipe symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaybadgujar102 committed Jun 1, 2024
1 parent d94de37 commit c00c28a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const BudgetSummary = ({ goal }: { goal: GoalItem }) => {

const summaryParts = [perDaySummary, onDaysSummary, timeConstraintsSummary, perWeekSummary].filter(Boolean);

return <span>{summaryParts.join(" | ")}</span>;
return <span>{summaryParts.join(", ")}</span>;
};

export default BudgetSummary;
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const GoalSummary = ({ goal }: { goal: GoalItem }) => {

const summaryParts = [sublistSummary, durationSummary, dueDateSummary, habitSummary].filter(Boolean);

return <span>{summaryParts.join(" | ")}</span>;
return <span>{summaryParts.join(", ")}</span>;
};

export default GoalSummary;

0 comments on commit c00c28a

Please sign in to comment.