Skip to content

Commit

Permalink
fix: more details for summar page when incomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
hampfh committed Aug 4, 2024
1 parent 0a9846f commit 9108dec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/dashboard/src/forms/fr_accounting/summary.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ export function SummaryFormPage() {
</h2>
)}
<div className="mb-5 flex gap-5">
{productPackage == null && (
{productPackage == null ? (
<p className="mb-1 text-sm">No package selected</p>
) : (
<p className="mb-1 text-sm">
Make sure you have filled in your invoice information
</p>
)}
{/* {unfilledFields.map(current => (
<Card key={current.page.id}>
Expand Down

0 comments on commit 9108dec

Please sign in to comment.