Skip to content

Commit

Permalink
examples(with-turbopack): Fix styling page default active stylingNav (#…
Browse files Browse the repository at this point in the history
…42739)

<!--
Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change that you're making:
-->

Closes: #42768

## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the
feature request has been accepted for implementation before opening a
PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have a helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm build && pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing
doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)

Co-authored-by: JJ Kasper <jj@jjsweb.site>
  • Loading branch information
m7yue and ijjk committed Dec 2, 2022
1 parent 48290c6 commit 5fb243d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/with-turbopack/app/styling/StylingNav.tsx
Expand Up @@ -31,14 +31,14 @@ const items = [
];

const StylingNav = () => {
const [selectedLayoutSegments] = useSelectedLayoutSegments();
const [selectedLayoutSegments = ''] = useSelectedLayoutSegments();

return (
<div className="flex items-center space-x-4">
{items.map((item) => (
<TabNavItem
key={item.slug}
href={`/styling/${item.slug}`}
href={`/styling${item.slug ? `/${item.slug}` : ''}`}
isActive={item.slug === selectedLayoutSegments}
>
{item.name}
Expand Down

0 comments on commit 5fb243d

Please sign in to comment.