Skip to content

Commit 4472dcb

Browse files
committed
remove in-app wallet wording
1 parent 9b20f63 commit 4472dcb

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

apps/dashboard/src/@/api/analytics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ const cached_getInAppWalletUsage = unstable_cache(
184184
if (res?.status !== 200) {
185185
const reason = await res?.text();
186186
console.error(
187-
`Failed to fetch in-app wallet usage, ${res?.status} - ${res.statusText} - ${reason}`,
187+
`Failed to fetch user wallets usage, ${res?.status} - ${res.statusText} - ${reason}`,
188188
);
189189
return [];
190190
}

apps/dashboard/src/@/components/in-app-wallet-users-content/in-app-wallet-users-content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ export function InAppWalletUsersPageContent(
337337
isFetched={walletsQuery.isFetched}
338338
isPending={walletsQuery.isPending}
339339
tableContainerClassName="rounded-none border-x-0 border-b-0"
340-
title="in-app wallets"
340+
title="User wallets"
341341
/>
342342

343343
<div className="flex justify-center gap-3 border-t bg-card p-6">

apps/dashboard/src/@/constants/siwa-example-prompts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const siwaExamplePrompts = [
2-
"How do I add in-app wallet with sign in with google to my react app?",
2+
"How do I add user wallet with sign in with google to my react app?",
33
"How do I send a transaction in Unity?",
44
"What does this contract revert error mean?",
55
"I see thirdweb support id in my console log, can you help me?",

apps/dashboard/src/@/storybook/stubs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export function teamSubscriptionsStub(
248248
// In-App Wallets
249249
{
250250
amount: usage.inAppWalletAmount?.amount || 0,
251-
description: `${usage.inAppWalletAmount?.quantity || 0} x In-App Wallets (Tier 1 at $0.00 / month)`,
251+
description: `${usage.inAppWalletAmount?.quantity || 0} x User Wallets (Tier 1 at $0.00 / month)`,
252252
thirdwebSku: "usage:in_app_wallet",
253253
},
254254
// AA Sponsorship

apps/dashboard/src/@/utils/pricing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const TEAM_PLANS: Record<
2323
features: [
2424
"Email Support",
2525
"48hr Guaranteed Response",
26-
"Custom In-App Wallet Auth",
26+
"Custom User Wallet Auth",
2727
],
2828
price: 99,
2929
subTitle: "Everything in Starter, plus:",

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/settings/wallets/components/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const InAppWalletSettingsUI: React.FC<
113113
) {
114114
return toast.error("Custom JSON Web Token configuration is invalid", {
115115
description:
116-
"To use In-App Wallets with Custom JSON Web Token, provide JWKS URI and AUD.",
116+
"To use User Wallets with Custom JSON Web Token, provide JWKS URI and AUD.",
117117
dismissible: true,
118118
duration: 9000,
119119
});
@@ -124,7 +124,7 @@ export const InAppWalletSettingsUI: React.FC<
124124
"Custom Authentication Endpoint configuration is invalid",
125125
{
126126
description:
127-
"To use In-App Wallets with Custom Authentication Endpoint, provide a valid URL.",
127+
"To use User Wallets with Custom Authentication Endpoint, provide a valid URL.",
128128
dismissible: true,
129129
duration: 9000,
130130
},

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/analytics/chart/InAppWalletUsersChartCard.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const Variants: Story = {
1919
function Component() {
2020
const title = "This is Title";
2121
const description =
22-
"This is an example of a description about in-app wallet usage chart";
22+
"This is an example of a description about user wallet usage chart";
2323
return (
2424
<div className="container flex max-w-6xl flex-col gap-10 py-10">
2525
<BadgeContainer label="30 days">

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/analytics/chart/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function InAppWalletAnalyticsUI({
2121
return (
2222
<InAppWalletUsersChartCardUI
2323
title="Unique Users"
24-
description="The total number of active in-app wallet users on your project."
24+
description="The total number of active user wallet users on your project."
2525
inAppWalletStats={stats || []}
2626
isPending={isPending}
2727
/>

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/user-wallets/configuration/components/index.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function InAppWalletSettingsPage(props: InAppWalletSettingsPageProps) {
7777
console.error(err);
7878
},
7979
onSuccess: () => {
80-
toast.success("In-App Wallet API Key configuration updated");
80+
toast.success("Configuration updated successfully");
8181
},
8282
});
8383
}
@@ -110,9 +110,9 @@ const InAppWalletSettingsPageUI: React.FC<
110110
return (
111111
<Alert variant="warning">
112112
<CircleAlertIcon className="size-5" />
113-
<AlertTitle>In-App wallets service is disabled</AlertTitle>
113+
<AlertTitle>Wallets service is disabled</AlertTitle>
114114
<AlertDescription>
115-
Enable In-App wallets service in the{" "}
115+
Enable Wallets service in the{" "}
116116
<UnderlineLink
117117
href={`/team/${props.teamSlug}/${props.project.slug}/settings`}
118118
>
@@ -191,7 +191,7 @@ const InAppWalletSettingsUI: React.FC<
191191
) {
192192
return toast.error("Custom JSON Web Token configuration is invalid", {
193193
description:
194-
"To use In-App Wallets with Custom JSON Web Token, provide JWKS URI and AUD.",
194+
"To use user wallets with Custom JSON Web Token, provide JWKS URI and AUD.",
195195
dismissible: true,
196196
duration: 9000,
197197
});
@@ -202,7 +202,7 @@ const InAppWalletSettingsUI: React.FC<
202202
"Custom Authentication Endpoint configuration is invalid",
203203
{
204204
description:
205-
"To use In-App Wallets with Custom Authentication Endpoint, provide a valid URL.",
205+
"To use user wallets with Custom Authentication Endpoint, provide a valid URL.",
206206
dismissible: true,
207207
duration: 9000,
208208
},

0 commit comments

Comments
 (0)