Merge pull request #377 from cloudflare/loginUrl-string

add missing string conversion to loginUrl
This commit is contained in:
Sven Sauleau 2023-03-07 13:11:51 +01:00 committed by GitHub
commit 7cf803a4d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ export default component$(() => {
{!isAuthorized && (
<a
class="w-full block mb-4 no-underline text-center bg-wildebeest-vibrant-600 hover:bg-wildebeest-vibrant-500 p-2 text-white text-uppercase border-wildebeest-vibrant-600 text-lg text-semi outline-none border rounded hover:border-wildebeest-vibrant-500 focus:border-wildebeest-vibrant-500"
href={loginUrl}
href={`${loginUrl}`}
>
Sign in
</a>