Skip to content

Commit 5ba53c8

Browse files
authored
ci: fix ui-test-app pre publish (#1354)
### Description Another error that prevented the ci publish ### Demo URL <!-- Provide a URL to a live deployment where we can test your PR. If a demo isn't possible feel free to omit this section. --> ### Type of Change - [ ] New Example - [ ] Example updates (Bug fixes, new features, etc.) - [ ] Other (changes to the codebase, but not to examples) ### New Example Checklist - [ ] 🛫 `npm run new-example` was used to create the example - [ ] 📚 The template wasn't used but I carefuly read the [Adding a new example](https://github.com/vercel/examples#adding-a-new-example) steps and implemented them in the example - [ ] 📱 Is it responsive? Are mobile and tablets considered?
1 parent 5cafaf3 commit 5ba53c8

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@vercel/examples-ui': patch
3+
---
4+
5+
Export layout, allow react 19

internal/packages/ui/CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# @vercel/examples-ui
22

3-
## 2.0.4
4-
5-
### Patch Changes
6-
7-
- d069f5f5: Export layout, allow react 19
8-
93
## 2.0.3
104

115
### Patch Changes

internal/packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vercel/examples-ui",
3-
"version": "2.0.4",
3+
"version": "2.0.3",
44
"license": "MIT",
55
"scripts": {
66
"dev": "pnpm build:swc -w",

internal/packages/ui/src/link.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
import NextLinkComp, { LinkProps as NextLinkProps } from 'next/link.js'
1+
import NextLink, { LinkProps as NextLinkProps } from 'next/link'
22
import clsx from 'clsx'
33

4-
const NextLink: typeof NextLinkComp =
5-
(NextLinkComp as any).default || NextLinkComp
6-
74
type LinkProps = Omit<
85
React.AnchorHTMLAttributes<HTMLAnchorElement>,
96
keyof NextLinkProps

0 commit comments

Comments
 (0)