fix: fix authorize app initial box not being a box

This commit is contained in:
Stavros
2026-03-02 15:50:08 +02:00
parent 27d14d6b21
commit 06a26e976b
2 changed files with 11 additions and 11 deletions

View File

@@ -258,13 +258,13 @@ export const LoginPage = () => {
/>
)}
{providers.length == 0 && (
<p className="text-center text-red-600 max-w-sm">
<pre className="break-normal! text-sm text-red-600">
{t("failedToFetchProvidersTitle")}
</p>
</pre>
)}
</CardContent>
<CardFooter>
{userAuthConfigured && (
{userAuthConfigured && (
<CardFooter>
<Button
className="w-full"
type="submit"
@@ -273,8 +273,8 @@ export const LoginPage = () => {
>
{t("loginSubmit")}
</Button>
)}
</CardFooter>
</CardFooter>
)}
</Card>
);
};