Skip to content

Commit

Permalink
fix(core): UX improvements for account pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-yevhenii-buliuk committed Nov 11, 2024
1 parent a8da829 commit a97226f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/slimy-months-hunt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bigcommerce/catalyst-core": patch
---

UX improvements for account pages
1 change: 0 additions & 1 deletion core/app/[locale]/(default)/account/(tabs)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export default function AccountTabLayout({ children, params: { locale } }: Props

return (
<>
<h1 className="my-8 text-4xl font-black lg:my-8 lg:text-5xl">{t('heading')}</h1>
<TabNavigation />
{children}
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default function ChangePassword({ params: { locale } }: Props) {

return (
<>
<TabHeading heading="settings" />
<div className="mx-auto lg:w-2/3">
<TabHeading heading="settings" />
<ChangePasswordForm />
</div>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export default async function Settings() {

return (
<>
<TabHeading heading="settings" />
<div className="mx-auto lg:w-2/3">
<TabHeading heading="settings" />
<UpdateSettingsForm {...customerSettings} />
</div>
</>
Expand Down

0 comments on commit a97226f

Please sign in to comment.