Skip to content

Commit 74b098b

Browse files
committed
lint
1 parent 7a9713e commit 74b098b

File tree

1 file changed

+7
-6
lines changed
  • apps/dashboard/src/app/(dashboard)/dashboard/connect/in-app-wallets/[clientId]/analytics

1 file changed

+7
-6
lines changed

apps/dashboard/src/app/(dashboard)/dashboard/connect/in-app-wallets/[clientId]/analytics/page.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import type { Range } from "components/analytics/date-range-selector";
22
import { InAppWalletAnalytics } from "components/embedded-wallets/Analytics";
33

4-
export default function Page({
5-
params,
6-
searchParams,
7-
}: {
8-
params: { clientId: string };
9-
searchParams: {
4+
export default async function Page(props: {
5+
params: Promise<{
6+
team_slug: string;
7+
project_slug: string;
8+
clientId: string;
9+
}>;
10+
searchParams: Promise<{
1011
from?: string;
1112
to?: string;
1213
type?: string;

0 commit comments

Comments
 (0)