Skip to content

Commit

Permalink
fix: invert name and surname in CheckboxCustomerList
Browse files Browse the repository at this point in the history
  • Loading branch information
xfloor committed May 16, 2024
1 parent c3f96a4 commit 23fcc6f
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 @@ -120,7 +120,7 @@ const EmailTemplateSettings: React.FC<EmailTemplateSettingsProps> = ({
className="flex items-center p-2 border rounded bg-gray-200 mx-2 mb-2"
>
<span>
{cus.name} {cus.surname}
{cus.surname} {cus.name}
</span>
<button
className="ml-2 text-red-500"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const CustomerList: React.FC<Props> = ({
onChange={() => onCustomerClick(customer)}
/>
<span className="ml-2 text-gray-700">
{customer.name} {customer.surname}
{customer.surname} {customer.name}
</span>
</div>

Expand Down

0 comments on commit 23fcc6f

Please sign in to comment.