Skip to content

Commit

Permalink
fix(website): change order of attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Oct 27, 2024
1 parent a9fec19 commit a5cf429
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions apps/website/app/routes/me.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,26 +126,26 @@ export default function Index() {
{loaderData.customerDetails.email}
</p>
</div>
{loaderData.customerDetails.renewOn ? (
<div>
<Label>Renewal Status</Label>
<p className="text-muted-foreground">
Renews on {loaderData.customerDetails.renewOn}
</p>
</div>
) : null}
<div>
<Label>Plan Type</Label>
<Label>Product Type</Label>
<p className="text-muted-foreground">
{changeCase(loaderData.customerDetails.planType)}
{changeCase(loaderData.customerDetails.productType)}
</p>
</div>
<div>
<Label>Product Type</Label>
<Label>Plan Type</Label>
<p className="text-muted-foreground">
{changeCase(loaderData.customerDetails.productType)}
{changeCase(loaderData.customerDetails.planType)}
</p>
</div>
{loaderData.customerDetails.renewOn ? (
<div>
<Label>Renewal Status</Label>
<p className="text-muted-foreground">
Renews on {loaderData.customerDetails.renewOn}
</p>
</div>
) : null}
{loaderData.customerDetails.ryotUserId ? (
<div>
<Label>User ID</Label>
Expand Down

0 comments on commit a5cf429

Please sign in to comment.