We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a9713e commit 74b098bCopy full SHA for 74b098b
apps/dashboard/src/app/(dashboard)/dashboard/connect/in-app-wallets/[clientId]/analytics/page.tsx
@@ -1,12 +1,13 @@
1
import type { Range } from "components/analytics/date-range-selector";
2
import { InAppWalletAnalytics } from "components/embedded-wallets/Analytics";
3
4
-export default function Page({
5
- params,
6
- searchParams,
7
-}: {
8
- params: { clientId: string };
9
- searchParams: {
+export default async function Page(props: {
+ params: Promise<{
+ team_slug: string;
+ project_slug: string;
+ clientId: string;
+ }>;
10
+ searchParams: Promise<{
11
from?: string;
12
to?: string;
13
type?: string;
0 commit comments