File tree Expand file tree Collapse file tree 11 files changed +15
-17
lines changed
packages/service-utils/src/core Expand file tree Collapse file tree 11 files changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export function ProjectSidebarLayout(props: {
34
34
} ,
35
35
{
36
36
label : "Wallets" ,
37
- href : `${ layoutPath } /connect/in-app- wallets` ,
37
+ href : `${ layoutPath } /wallets` ,
38
38
icon : WalletIcon ,
39
39
} ,
40
40
{
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ export function ProjectGeneralSettingsPageUI(props: {
218
218
219
219
const paths = {
220
220
aaConfig : `${ projectLayout } /connect/account-abstraction/settings` ,
221
- inAppConfig : `${ projectLayout } /connect/in-app- wallets/settings` ,
221
+ inAppConfig : `${ projectLayout } /wallets/settings` ,
222
222
payConfig : `${ projectLayout } /connect/universal-bridge/settings` ,
223
223
afterDeleteRedirectTo : `/team/${ props . teamSlug } ` ,
224
224
} ;
Original file line number Diff line number Diff line change 1
- import { FooterLinksSection } from "../../../ components/footer/FooterLinksSection" ;
1
+ import { FooterLinksSection } from "../../components/footer/FooterLinksSection" ;
2
2
3
3
export function InAppWalletsFooter ( ) {
4
4
return (
File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,7 +10,5 @@ export default async function Page(props: {
10
10
} ) {
11
11
const params = await props . params ;
12
12
// Default to the users tab
13
- redirect (
14
- `/team/${ params . team_slug } /${ params . project_slug } /connect/in-app-wallets` ,
15
- ) ;
13
+ redirect ( `/team/${ params . team_slug } /${ params . project_slug } /wallets` ) ;
16
14
}
Original file line number Diff line number Diff line change @@ -33,17 +33,17 @@ export default async function Layout(props: {
33
33
links = { [
34
34
{
35
35
name : "Analytics" ,
36
- path : `/team/${ team_slug } /${ project_slug } /connect/in-app- wallets` ,
36
+ path : `/team/${ team_slug } /${ project_slug } /wallets` ,
37
37
exactMatch : true ,
38
38
} ,
39
39
{
40
40
name : "Users" ,
41
- path : `/team/${ team_slug } /${ project_slug } /connect/in-app- wallets/users` ,
41
+ path : `/team/${ team_slug } /${ project_slug } /wallets/users` ,
42
42
exactMatch : true ,
43
43
} ,
44
44
{
45
45
name : "Settings" ,
46
- path : `/team/${ team_slug } /${ project_slug } /connect/in-app- wallets/settings` ,
46
+ path : `/team/${ team_slug } /${ project_slug } /wallets/settings` ,
47
47
exactMatch : true ,
48
48
} ,
49
49
] }
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import { getProject } from "@/api/projects";
2
2
import { getSMSCountryTiers } from "@/api/sms" ;
3
3
import { getTeamBySlug } from "@/api/team" ;
4
4
import { getClientThirdwebClient } from "@/constants/thirdweb-client.client" ;
5
+ import { getAuthToken } from "@app/api/lib/getAuthToken" ;
6
+ import { loginRedirect } from "@app/login/loginRedirect" ;
7
+ import { getValidTeamPlan } from "@app/team/components/TeamHeader/getValidTeamPlan" ;
5
8
import { InAppWalletSettingsPage } from "components/embedded-wallets/Configure" ;
6
9
import { redirect } from "next/navigation" ;
7
- import { getAuthToken } from "../../../../../../../api/lib/getAuthToken" ;
8
- import { loginRedirect } from "../../../../../../../login/loginRedirect" ;
9
- import { getValidTeamPlan } from "../../../../../../components/TeamHeader/getValidTeamPlan" ;
10
10
11
11
export default async function Page ( props : {
12
12
params : Promise < { team_slug : string ; project_slug : string } > ;
@@ -21,7 +21,7 @@ export default async function Page(props: {
21
21
] ) ;
22
22
23
23
if ( ! authToken ) {
24
- loginRedirect ( `/team/${ team_slug } /connect/in-app- wallets/settings` ) ;
24
+ loginRedirect ( `/team/${ team_slug } /wallets/settings` ) ;
25
25
}
26
26
27
27
if ( ! team ) {
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { getProject } from "@/api/projects" ;
2
2
import { getClientThirdwebClient } from "@/constants/thirdweb-client.client" ;
3
+ import { getAuthToken } from "@app/api/lib/getAuthToken" ;
4
+ import { loginRedirect } from "@app/login/loginRedirect" ;
3
5
import { InAppWalletUsersPageContent } from "components/embedded-wallets/Users" ;
4
6
import { redirect } from "next/navigation" ;
5
- import { getAuthToken } from "../../../../../../../api/lib/getAuthToken" ;
6
- import { loginRedirect } from "../../../../../../../login/loginRedirect" ;
7
7
8
8
export default async function Page ( props : {
9
9
params : Promise < { team_slug : string ; project_slug : string } > ;
@@ -16,7 +16,7 @@ export default async function Page(props: {
16
16
17
17
if ( ! authToken ) {
18
18
loginRedirect (
19
- `/team/${ params . team_slug } /${ params . project_slug } /connect/in-app- wallets/users` ,
19
+ `/team/${ params . team_slug } /${ params . project_slug } /wallets/users` ,
20
20
) ;
21
21
}
22
22
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export const SERVICE_DEFINITIONS = {
39
39
} ,
40
40
embeddedWallets : {
41
41
name : "embeddedWallets" ,
42
- title : "In-App Wallets" ,
42
+ title : "Wallets" ,
43
43
description : "E-mail and social login wallets for easy web3 onboarding" ,
44
44
// all actions allowed
45
45
actions : [ ] ,
You can’t perform that action at this time.
0 commit comments