HTML auto direction for specific textual content #286

Merged
verbiricha merged 4 commits from rtl into main 2023-02-13 10:47:53 +00:00
Showing only changes of commit 24bf313420 - Show all commits

View File

@ -151,11 +151,9 @@ export default function ProfilePage() {
function bio() {
return (
aboutText.length && (
<React.Fragment>
<div dir="auto" className="details">
{about}
</div>
</React.Fragment>
<div dir="auto" className="details">
{about}
</div>
)
);
}