Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/cruel-seals-agree.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
14 changes: 7 additions & 7 deletions packages/clerk-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,19 @@
"@clerk/localizations": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"@coinbase/wallet-sdk": "4.3.0",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.1",
"@floating-ui/react": "0.27.12",
"@floating-ui/react-dom": "^2.1.3",
"@coinbase/wallet-sdk": "4.3.6",
"@emotion/cache": "11.14.0",
"@emotion/react": "11.14.0",
"@floating-ui/react": "0.27.13",
"@floating-ui/react-dom": "^2.1.4",
"@formkit/auto-animate": "^0.8.2",
"@stripe/stripe-js": "5.6.0",
"@stripe/stripe-js": "5.10.0",
"@swc/helpers": "^0.5.17",
"@zxcvbn-ts/core": "3.0.4",
"@zxcvbn-ts/language-common": "3.0.4",
"browser-tabs-lock": "1.3.0",
"copy-to-clipboard": "3.3.3",
"core-js": "3.41.0",
"core-js": "3.44.0",
"crypto-js": "^4.2.0",
"dequal": "2.0.3",
"qrcode.react": "4.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/clerk-js/src/ui/common/withRedirect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function withRedirect<P extends AvailableComponentProps>(
return null;
}

return <Component {...props} />;
return <Component {...(props as any)} />;
};

HOC.displayName = `withRedirect(${displayName})`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const withHavingTrouble = <P extends AlternativeMethodsProps>(

return (
<Component
{...(props as unknown as P)}
{...(props as any)}
onHavingTroubleClick={toggleHavingTrouble}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const withHavingTrouble = <P extends AlternativeMethodsProps>(

return (
<Component
{...(props as unknown as P)}
{...(props as any)}
onHavingTroubleClick={toggleHavingTrouble}
/>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/clerk-js/src/ui/elements/withAvatarShimmer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const withAvatarShimmer = <T extends { sx?: ThemableCssProp }>(Component:

return (
<Component
{...(props as T)}
{...(props as any)}
ref={ref}
sx={[
parsedLayout.shimmer
Expand Down
Loading
Loading