Skip to content

Commit

Permalink
fix: Remove the separator line from the sign in page when no provider…
Browse files Browse the repository at this point in the history
…s are configured
  • Loading branch information
MohamedBassem committed Feb 22, 2024
1 parent c2e7ae2 commit 58016af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/app/signin/components/SignInForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default async function SignInForm() {
<div className="flex flex-col items-center space-y-2">
<CredentialsForm />

{providerValues && (
{providerValues && providerValues.length > 0 && (
<>
<div className="flex w-full items-center">
<div className="flex-1 grow border-t-2 border-gray-200"></div>
Expand Down

0 comments on commit 58016af

Please sign in to comment.