-
Notifications
You must be signed in to change notification settings - Fork 212
W-18672755 - W-18397045 - Chakra UI order history and order detail #2730
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
0fba8c8
58a5946
5c11ae7
a753372
78fd619
e570c77
9484e4c
8fe2d25
3fd98c4
483bb8e
94055f0
9ce187a
4994899
accded0
cc033c2
6b5d9ed
db3edec
b939c68
d2b105a
5251e1c
c34d898
74c405c
90de11f
4291e2f
10538d4
1ed07c5
10ac07d
6f1ba24
2cd1e65
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -257,7 +257,7 @@ const Header = ({ | |
| <Popover.Body css={styles.dropdownMenuBody}> | ||
| <Popover.Header pb={1}> | ||
| <Popover.Title> | ||
| <Heading as="h2" fontWeight={700} size="lg"> | ||
| <Heading as="h2" size="lg"> | ||
| {intl.formatMessage({ | ||
| defaultMessage: 'My Account', | ||
| id: 'header.popover.title.my_account' | ||
|
|
@@ -275,23 +275,25 @@ const Header = ({ | |
| {navLinks.map((link) => { | ||
| const LinkIcon = link.icon | ||
| return ( | ||
| <List.Item | ||
| key={link.name} | ||
| value={link.name} | ||
| > | ||
| <Link | ||
| useNavLink={true} | ||
| to={`/account${link.path}`} | ||
| <List.Item key={link.name}> | ||
| <Button | ||
|
||
| asChild | ||
| variant="menu-link" | ||
| css={styles.menuAccountLink} | ||
|
||
| > | ||
| <LinkIcon | ||
| boxSize={5} | ||
| mr={3} | ||
| /> | ||
| {intl.formatMessage( | ||
| messages[link.name] | ||
| )} | ||
| </Link> | ||
| <Link | ||
| to={`/account${link.path}`} | ||
| useNavLink={true} | ||
| > | ||
| <LinkIcon | ||
| boxSize={5} | ||
| mr={2} | ||
| /> | ||
| {intl.formatMessage( | ||
| messages[link.name] | ||
| )} | ||
| </Link> | ||
| </Button> | ||
| </List.Item> | ||
| ) | ||
| })} | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I noticed a typo, it should be pwa-kit/packages/extension-chakra-storefront/src/components/order-summary/index.jsx Line 307 in d2b105a
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Heading is now default to fontWeight: bold, no need to customise from the component