File tree Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export function ProjectSidebarLayout(props: {
43
43
icon : SmartAccountIcon ,
44
44
} ,
45
45
{
46
- href : `${ layoutPath } /connect/ universal-bridge` ,
46
+ href : `${ layoutPath } /universal-bridge` ,
47
47
icon : PayIcon ,
48
48
label : "Universal Bridge" ,
49
49
} ,
Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ function AppHighlightsCard({
439
439
< EmptyStateContent
440
440
metric = "Fees"
441
441
description = "Your app hasn't collected any fees yet."
442
- link = { `/team/${ params . team_slug } /${ params . project_slug } /connect/ universal-bridge/settings` }
442
+ link = { `/team/${ params . team_slug } /${ params . project_slug } /universal-bridge/settings` }
443
443
/>
444
444
) ,
445
445
} ,
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ export function ProjectGeneralSettingsPageUI(props: {
219
219
const paths = {
220
220
aaConfig : `${ projectLayout } /account-abstraction/settings` ,
221
221
inAppConfig : `${ projectLayout } /wallets/settings` ,
222
- payConfig : `${ projectLayout } /connect/ universal-bridge/settings` ,
222
+ payConfig : `${ projectLayout } /universal-bridge/settings` ,
223
223
afterDeleteRedirectTo : `/team/${ props . teamSlug } ` ,
224
224
} ;
225
225
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { getProject } from "@/api/projects";
2
2
import { UnderlineLink } from "@/components/ui/UnderlineLink" ;
3
3
import { TabPathLinks } from "@/components/ui/tabs" ;
4
4
import { redirect } from "next/navigation" ;
5
- import { FooterLinksSection } from "../../ components/footer/FooterLinksSection" ;
5
+ import { FooterLinksSection } from "../components/footer/FooterLinksSection" ;
6
6
7
7
export default async function Layout ( props : {
8
8
params : Promise < {
@@ -18,7 +18,7 @@ export default async function Layout(props: {
18
18
redirect ( `/team/${ params . team_slug } ` ) ;
19
19
}
20
20
21
- const payLayoutPath = `/team/${ params . team_slug } /${ params . project_slug } /connect/ universal-bridge` ;
21
+ const payLayoutPath = `/team/${ params . team_slug } /${ params . project_slug } /universal-bridge` ;
22
22
23
23
return (
24
24
< div className = "flex grow flex-col" >
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { getProject } from "@/api/projects" ;
2
2
import { Spinner } from "@/components/ui/Spinner/Spinner" ;
3
3
import { getClientThirdwebClient } from "@/constants/thirdweb-client.client" ;
4
+ import { getAuthToken } from "@app/api/lib/getAuthToken" ;
5
+ import { loginRedirect } from "@app/login/loginRedirect" ;
4
6
import { PayAnalytics } from "components/pay/PayAnalytics/PayAnalytics" ;
5
7
import { PayAnalyticsFilter } from "components/pay/PayAnalytics/components/PayAnalyticsFilter" ;
6
8
import { getUniversalBridgeFiltersFromSearchParams } from "lib/time" ;
@@ -10,8 +12,6 @@ import {
10
12
ResponsiveSearchParamsProvider ,
11
13
ResponsiveSuspense ,
12
14
} from "responsive-rsc" ;
13
- import { getAuthToken } from "../../../../../../api/lib/getAuthToken" ;
14
- import { loginRedirect } from "../../../../../../login/loginRedirect" ;
15
15
16
16
export default async function Page ( props : {
17
17
params : Promise < {
@@ -30,7 +30,7 @@ export default async function Page(props: {
30
30
31
31
if ( ! authToken ) {
32
32
loginRedirect (
33
- `/team/${ params . team_slug } /${ params . project_slug } /connect/ universal-bridge` ,
33
+ `/team/${ params . team_slug } /${ params . project_slug } /universal-bridge` ,
34
34
) ;
35
35
}
36
36
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import { getProject } from "@/api/projects";
2
2
import { getTeamBySlug } from "@/api/team" ;
3
3
import { getFees } from "@/api/universal-bridge/developer" ;
4
4
import { getClientThirdwebClient } from "@/constants/thirdweb-client.client" ;
5
+ import { getAuthToken } from "@app/api/lib/getAuthToken" ;
6
+ import { loginRedirect } from "@app/login/loginRedirect" ;
5
7
import { PayConfig } from "components/pay/PayConfig" ;
6
8
import { RouteDiscovery } from "components/pay/RouteDiscovery" ;
7
9
import { redirect } from "next/navigation" ;
8
- import { getAuthToken } from "../../../../../../../api/lib/getAuthToken" ;
9
- import { loginRedirect } from "../../../../../../../login/loginRedirect" ;
10
10
11
11
export default async function Page ( props : {
12
12
params : Promise < {
@@ -24,7 +24,7 @@ export default async function Page(props: {
24
24
25
25
if ( ! authToken ) {
26
26
loginRedirect (
27
- `/team/${ team_slug } /${ project_slug } /connect/ universal-bridge/settings` ,
27
+ `/team/${ team_slug } /${ project_slug } /universal-bridge/settings` ,
28
28
) ;
29
29
}
30
30
@@ -63,7 +63,7 @@ export default async function Page(props: {
63
63
} ) ;
64
64
65
65
return (
66
- < div className = "flex flex-col p-5 " >
66
+ < div className = "flex flex-col" >
67
67
< PayConfig
68
68
project = { project }
69
69
teamId = { team . id }
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments