Skip to content

Commit

Permalink
Changed text direction for account number
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanidev committed Nov 20, 2023
1 parent fd413b6 commit d449d60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/PaymentInfoItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ function PaymentInfoItem({ text, icon }: { text: string; icon: ReactNode }) {
return (
<li className="flex items-center gap-1 rounded-md bg-[#d9d9d9] px-4 py-1">
<span className="rounded-sm bg-white/40 px-1 py-0.5">{icon}</span>
<p className="w-full">{text}</p>
<p className="w-full" dir="ltr">
{text}
</p>
<button
onClick={copy as MouseEventHandler<HTMLButtonElement>}
className="rounded-sm bg-white/40 px-1 py-0.5">
Expand Down

0 comments on commit d449d60

Please sign in to comment.