Skip to content

Commit

Permalink
Fix(crm): Padding in DasboardStepper
Browse files Browse the repository at this point in the history
arimet committed Aug 1, 2024
1 parent 8cf83e9 commit bd8655d
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/crm/src/dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ export const Dashboard = () => {
}

if (!totalContactNotes) {
return <DashboardStepper step={2} contactId={dataContact?.[0].id} />;
return <DashboardStepper step={2} contactId={dataContact?.[0]?.id} />;
}

return (
2 changes: 1 addition & 1 deletion examples/crm/src/dashboard/DashboardStepper.tsx
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ export const DashboardStepper = ({
direction="row"
alignItems="center"
justifyContent="space-between"
mb={4}
mb={2}
>
<Typography variant="h6" fontWeight="bold">
What's next?
1 change: 1 addition & 0 deletions examples/crm/src/dashboard/HotContacts.tsx
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ export const HotContacts = () => {
},
{ enabled: Number.isInteger(identity?.id) }
);

return (
<Stack>
<Box display="flex" alignItems="center" mb={1}>

0 comments on commit bd8655d

Please sign in to comment.