fix default logo size

This commit is contained in:
miloschwartz
2026-01-19 11:47:14 -08:00
parent 14a4b1b4b4
commit fd6a3e5a17
7 changed files with 14 additions and 13 deletions

View File

@@ -18,8 +18,8 @@ export default function DeviceAuthSuccessPage() {
? env.branding.logo?.authPage?.width || 175
: 175;
const logoHeight = isUnlocked()
? env.branding.logo?.authPage?.height || 58
: 58;
? env.branding.logo?.authPage?.height || 44
: 44;
useEffect(() => {
// Detect if we're on iOS or Android
@@ -82,4 +82,4 @@ export default function DeviceAuthSuccessPage() {
</p>
</>
);
}
}