Skip to content

Commit

Permalink
Merge pull request #116 from TanishBasu2002/main
Browse files Browse the repository at this point in the history
Changed variables and updated modes
  • Loading branch information
sadmann7 authored Jan 27, 2024
2 parents 6268506 + 5e316f5 commit 228b617
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/(dashboard)/dashboard/account/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import type { Metadata } from "next"
import { env } from "@/env.mjs"

import { UserProfile } from "@/components/auth/user-profile"
import {
PageHeader,
PageHeaderDescription,
PageHeaderHeading,
} from "@/components/page-header"
import { Shell } from "@/components/shells/shell"
import {dark} from "@clerk/themes";

export const metadata: Metadata = {
metadataBase: new URL(env.NEXT_PUBLIC_APP_URL),
Expand All @@ -33,7 +33,9 @@ export default function AccountPage() {
aria-labelledby="user-account-info-heading"
className="w-full overflow-hidden"
>
<UserProfile />
<UserProfile appearance={{

Check failure on line 36 in src/app/(dashboard)/dashboard/account/page.tsx

View workflow job for this annotation

GitHub Actions / Typecheck

Type '{ appearance: { baseTheme: BaseThemeTaggedType; }; }' is not assignable to type 'IntrinsicAttributes'.
baseTheme: dark,
}}/>
</section>
</Shell>
)
Expand Down

0 comments on commit 228b617

Please sign in to comment.