Skip to content

Commit 0a6b0ec

Browse files
authored
update dependencies (#5523)
1 parent 708c353 commit 0a6b0ec

File tree

17 files changed

+609
-833
lines changed

17 files changed

+609
-833
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

apps/dashboard/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@
4848
"@radix-ui/react-tooltip": "1.1.4",
4949
"@sentry/nextjs": "8.40.0",
5050
"@shazow/whatsabi": "^0.17.0",
51-
"@tanstack/react-query": "5.61.3",
51+
"@tanstack/react-query": "5.61.4",
5252
"@tanstack/react-table": "^8.17.3",
5353
"@thirdweb-dev/service-utils": "workspace:*",
5454
"@vercel/functions": "^1.4.2",
5555
"@vercel/og": "^0.6.4",
5656
"abitype": "1.0.6",
5757
"chakra-react-select": "^4.7.6",
58-
"class-variance-authority": "^0.7.0",
58+
"class-variance-authority": "^0.7.1",
5959
"clsx": "^2.1.1",
6060
"color": "^4.2.3",
6161
"compare-versions": "^6.1.0",
@@ -66,7 +66,6 @@
6666
"input-otp": "^1.4.1",
6767
"ioredis": "^5.4.1",
6868
"ipaddr.js": "^2.2.0",
69-
"lottie-react": "^2.4.0",
7069
"lucide-react": "0.461.0",
7170
"next": "15.0.3",
7271
"next-plausible": "^3.12.4",
@@ -117,7 +116,7 @@
117116
"@storybook/react": "8.4.5",
118117
"@storybook/test": "8.4.5",
119118
"@types/color": "4.2.0",
120-
"@types/node": "20.14.9",
119+
"@types/node": "22.10.0",
121120
"@types/papaparse": "^5.3.15",
122121
"@types/pluralize": "^0.0.33",
123122
"@types/qrcode": "^1.5.5",
@@ -134,7 +133,7 @@
134133
"eslint-config-biome": "1.9.3",
135134
"eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
136135
"eslint-plugin-storybook": "^0.11.1",
137-
"knip": "5.37.2",
136+
"knip": "5.38.0",
138137
"next-sitemap": "^4.2.3",
139138
"postcss": "8.4.49",
140139
"storybook": "8.4.5",

apps/dashboard/public/assets/product-pages/connect/connect-lottie.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/dashboard/public/assets/product-pages/engine/lottie.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/dashboard/public/assets/product-pages/engine/lottie2.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/dashboard/src/app/team/[team_slug]/(team)/~/engine/(instance)/[engineId]/overview/components/backend-wallets-table.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ const ReceiveFundsModal = ({
371371
address={backendWallet.address}
372372
shortenAddress={false}
373373
/>
374+
{/* eslint-disable-next-line @next/next/no-img-element */}
374375
<img
375376
src={qrCodeBase64Query.data}
376377
alt="QR code for receiving funds"
Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import { Box } from "@chakra-ui/react";
21
import { ChakraNextImage } from "components/Image";
3-
import Lottie from "lottie-react";
42
import type { LandingDesktopMobileImageProps } from "./types";
53

64
export const LandingDesktopMobileImage: React.FC<
75
LandingDesktopMobileImageProps
8-
> = ({ lottie, image, mobileImage, ...props }) => {
6+
> = ({ image, mobileImage, ...props }) => {
97
return (
108
<>
119
{mobileImage && (
@@ -16,27 +14,14 @@ export const LandingDesktopMobileImage: React.FC<
1614
alt=""
1715
/>
1816
)}
19-
{!lottie && image && (
17+
{image && (
2018
<ChakraNextImage
2119
{...props}
2220
src={image}
2321
alt=""
2422
display={{ base: mobileImage ? "none" : "block", md: "block" }}
2523
/>
2624
)}
27-
{lottie && (
28-
<Box
29-
w="100%"
30-
h="100%"
31-
display={{ base: mobileImage ? "none" : "block", md: "block" }}
32-
>
33-
<Lottie
34-
animationData={lottie}
35-
style={{ height: "100%" }}
36-
loop={true}
37-
/>
38-
</Box>
39-
)}
4025
</>
4126
);
4227
};

apps/dashboard/src/components/landing-pages/hero-with-side-image.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ interface LandingHeroWithSideImageProps {
2020
gradient: string;
2121
image?: StaticImageData;
2222
mobileImage?: StaticImageData;
23-
// biome-ignore lint/complexity/noBannedTypes: FIXME
24-
lottie?: {};
2523
miniImage?: StaticImageData;
2624
mt?: BoxProps["mt"];
2725
contactUsBg?: TrackedLinkProps["bg"];
@@ -44,7 +42,7 @@ export const LandingHeroWithSideImage: React.FC<
4442
gradient,
4543
image,
4644
mobileImage,
47-
lottie,
45+
4846
miniImage,
4947
mt,
5048
contactUsBg,
@@ -93,11 +91,7 @@ export const LandingHeroWithSideImage: React.FC<
9391
/>
9492
</Flex>
9593
<Flex maxH="500px">
96-
<LandingDesktopMobileImage
97-
lottie={lottie}
98-
image={image}
99-
mobileImage={mobileImage}
100-
/>
94+
<LandingDesktopMobileImage image={image} mobileImage={mobileImage} />
10195
</Flex>
10296
</SimpleGrid>
10397
);

apps/dashboard/src/components/landing-pages/types.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import type { HeadingSizes } from "theme/typography";
55
export type LandingDesktopMobileImageProps = ChakraNextImageProps & {
66
image?: StaticImageData;
77
mobileImage?: StaticImageData;
8-
// biome-ignore lint/complexity/noBannedTypes: FIXME
9-
lottie?: {};
108
};
119

1210
export interface LandingSectionHeadingProps {

apps/dashboard/src/pages/connect.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import Head from "next/head";
1616
import { PageId } from "page-id";
1717
import { Heading, Text } from "tw-components";
1818
import type { ThirdwebNextPage } from "utils/types";
19-
import connectLottie from "../../public/assets/product-pages/connect/connect-lottie.json";
2019

2120
const TRACKING_CATEGORY = "connect-wallet-landing";
2221

@@ -175,7 +174,6 @@ const ConnectLanding: ThirdwebNextPage = () => {
175174
ctaLink="https://playground.thirdweb.com/connect/sign-in/button"
176175
contactUsTitle="Book Demo"
177176
gradient="linear(to-r, #4490FF, #4490FF)"
178-
lottie={connectLottie}
179177
image={require("../../public/assets/product-pages/hero/desktop-hero-connect-wallet.png")}
180178
mobileImage={require("../../public/assets/product-pages/hero/mobile-hero-connect-wallet.png")}
181179
contactUsBg="#0E0E0E"

0 commit comments

Comments
 (0)