Skip to content

Commit 36bdccb

Browse files
authored
fix(ui): fixed visibility issue on reset passowrd page (#2456)
1 parent f45730a commit 36bdccb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/sim/app/(auth)/login/login-form.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,10 +573,10 @@ export default function LoginPage({
573573
<Dialog open={forgotPasswordOpen} onOpenChange={setForgotPasswordOpen}>
574574
<DialogContent className='auth-card auth-card-shadow max-w-[540px] rounded-[10px] border backdrop-blur-sm'>
575575
<DialogHeader>
576-
<DialogTitle className='auth-text-primary font-semibold text-xl tracking-tight'>
576+
<DialogTitle className='font-semibold text-black text-xl tracking-tight'>
577577
Reset Password
578578
</DialogTitle>
579-
<DialogDescription className='auth-text-secondary text-sm'>
579+
<DialogDescription className='text-muted-foreground text-sm'>
580580
Enter your email address and we'll send you a link to reset your password if your
581581
account exists.
582582
</DialogDescription>

apps/sim/app/_shell/providers/theme-provider.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
1212
pathname === '/' ||
1313
pathname.startsWith('/login') ||
1414
pathname.startsWith('/signup') ||
15+
pathname.startsWith('/reset-password') ||
1516
pathname.startsWith('/sso') ||
1617
pathname.startsWith('/terms') ||
1718
pathname.startsWith('/privacy') ||

0 commit comments

Comments
 (0)