fix: Add tagline to Login branding state + troubleshooting doc

This commit is contained in:
dwindown
2025-11-11 10:14:09 +07:00
parent 432d84992c
commit 677c04dd62
2 changed files with 133 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ export function Login() {
logo: '',
logoDark: '',
storeName: 'WooNooW',
tagline: '',
});
const [isDark, setIsDark] = React.useState(false);
const navigate = useNavigate();
@@ -46,6 +47,7 @@ export function Login() {
logo: data.store_logo || '',
logoDark: data.store_logo_dark || '',
storeName: data.store_name || 'WooNooW',
tagline: data.store_tagline || '',
});
})
.catch(err => console.error('Failed to load branding:', err));