You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/service-utils/src/core/usageLimit/index.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ export async function usageLimit(
38
38
return{
39
39
usageLimited: true,
40
40
status: 403,
41
-
errorMessage: `You've used all of your total usage limit for Storage Pinning. Please add your payment method at https://thirdweb.com/dashboard/settings/billing.`,
41
+
errorMessage: `You've used all of your total usage credits for Storage Pinning. Please add your payment method at https://thirdweb.com/dashboard/settings/billing.`,
42
42
errorCode: "PAYMENT_METHOD_REQUIRED",
43
43
};
44
44
}
@@ -50,7 +50,7 @@ export async function usageLimit(
50
50
return{
51
51
usageLimited: true,
52
52
status: 403,
53
-
errorMessage: `You've used all of your total usage limit for Embedded Wallets. Please add your payment method at https://thirdweb.com/dashboard/settings/billing.`,
53
+
errorMessage: `You've used all of your total usage credits for Embedded Wallets. Please add your payment method at https://thirdweb.com/dashboard/settings/billing.`,
Copy file name to clipboardExpand all lines: packages/service-utils/src/core/usageLimit/usageLimit.test.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ describe("usageLimit", () => {
64
64
expect(result).toEqual({
65
65
usageLimited: true,
66
66
status: 403,
67
-
errorMessage: `You've used all of your total usage limit for Storage Pinning. Please add your payment method at https://thirdweb.com/dashboard/settings/billing.`,
67
+
errorMessage: `You've used all of your total usage credits for Storage Pinning. Please add your payment method at https://thirdweb.com/dashboard/settings/billing.`,
0 commit comments