diff --git a/www/app/Chat.tsx b/www/app/Chat.tsx index 6d5f2c0c..5668234a 100644 --- a/www/app/Chat.tsx +++ b/www/app/Chat.tsx @@ -457,14 +457,14 @@ What\'s on your mind? Let\'s dive in. 🌱`,
{freeMessages === 0 ? "You've used all your free messages" diff --git a/www/app/layout.tsx b/www/app/layout.tsx index ff662aa1..62e00472 100644 --- a/www/app/layout.tsx +++ b/www/app/layout.tsx @@ -7,6 +7,7 @@ import { Suspense } from 'react'; import { Header } from '@/components/header'; import { ThemeProvider } from 'next-themes'; import { SpeedInsights } from '@vercel/speed-insights/next'; +import { departureMono } from '@/utils/fonts'; const roboto = Roboto_Mono({ weight: '400', subsets: ['latin'] }); diff --git a/www/components/auth/forgot.tsx b/www/components/auth/forgot.tsx index a210a4e4..8d3a8c75 100644 --- a/www/components/auth/forgot.tsx +++ b/www/components/auth/forgot.tsx @@ -19,6 +19,7 @@ export default function Forgot(props: any) { title: 'Error!', text: 'Something went wrong', icon: 'error', + confirmButtonColor: '#3085d6', confirmButtonText: 'Close', }); return; @@ -27,6 +28,7 @@ export default function Forgot(props: any) { title: 'Success!', text: 'Please check your email for a password reset link', icon: 'success', + confirmButtonColor: '#3085d6', confirmButtonText: 'Close', }); }; @@ -50,7 +52,7 @@ export default function Forgot(props: any) {