Skip to content

fix: update analytics tracking script URL and ID #478

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ const Layout = ({
}>) => {
return (
<ClerkProvider dynamic>
<html lang='en'>
<html lang='en' suppressHydrationWarning>
<Script
async
src='https://umami.kinotio.io/script.js'
data-website-id='eb707704-e55f-4bcd-bb71-637d1ca6a7a4'
src='https://insight.kinotio.io/script.js'
data-website-id='a3a15497-c4c8-4fc5-95da-4235c05e77b2'
/>
<body className={`${inter.className}`}>
<ThemeProvider attribute='class' defaultTheme='system' enableSystem>
Expand Down
6 changes: 1 addition & 5 deletions src/server/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,13 @@ import {
ReportValidationSchema,
MetricValidationSchema,
LogValidationSchema,
UserValidationSchema,
PlanValidationSchema,
SubscriptionValidationSchema
UserValidationSchema
} from '@/server/validators'

export type ReportInferType = z.infer<typeof ReportValidationSchema>
export type MetricInferType = z.infer<typeof MetricValidationSchema>
export type LogInferType = z.infer<typeof LogValidationSchema>
export type UserInferType = z.infer<typeof UserValidationSchema>
export type PlanInferType = z.infer<typeof PlanValidationSchema>
export type SubscriptionInferType = z.infer<typeof SubscriptionValidationSchema>

export type ReportSelect = typeof reports.$inferSelect
export type ReportInsert = typeof reports.$inferInsert
Expand Down