use US server

This commit is contained in:
goenning 2023-09-01 16:28:53 +01:00
parent 343319f782
commit 8d3891f30f
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
return ( return (
<html lang="en"> <html lang="en">
<body> <body>
<AptabaseProvider appKey="A-DEV-0000000000">{children}</AptabaseProvider> <AptabaseProvider appKey="A-US-5431775171">{children}</AptabaseProvider>
</body> </body>
</html> </html>
); );

View file

@ -1,5 +1,5 @@
import { init } from '@aptabase/nextjs/server'; import { init } from '@aptabase/nextjs/server';
export function register() { export function register() {
init('A-DEV-0000000000'); init('A-US-5431775171');
} }