We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e0ad52 commit 6134c9cCopy full SHA for 6134c9c
npm-packages/@convex-dev/design-system/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@convex-dev/design-system",
3
- "version": "0.1.3",
+ "version": "0.1.4",
4
"type": "module",
5
"sideEffects": false,
6
"files": [
npm-packages/@convex-dev/design-system/src/UIContext.tsx
@@ -1,3 +1,4 @@
+import { omit } from "lodash-es";
import {
ComponentType,
createContext,
@@ -45,7 +46,7 @@ function DefaultLink({
45
46
? href
47
: `${href.pathname}${encodeQuery(href.query)}${href.hash || ""}`
48
}
- {...props}
49
+ {...omit(props, "passHref")}
50
>
51
{children}
52
</a>
0 commit comments