Skip to content

Commit

Permalink
chore: use break-words
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 committed Feb 2, 2024
1 parent 4f80d1a commit 6b210d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/PaymentSummary/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Dt = ({ children }: { children: React.ReactNode }) => (
);

const Dd = ({ children }: { children: React.ReactNode }) => (
<dd className="text-lg text-gray-600 dark:text-neutral-400 whitespace-prewrap overflow-hidden text-ellipsis">
<dd className="text-lg text-gray-600 dark:text-neutral-400 break-words">
{children}
</dd>
);
Expand Down

0 comments on commit 6b210d1

Please sign in to comment.