testing husky precommit hook

This commit is contained in:
2021-03-16 14:25:57 +01:00
parent 93efc326ab
commit f40e638583
6 changed files with 17 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
import Login from "./Login.svelte";
import Settings from "./Settings.svelte";
import { apikey, lang, page } from "./store.js";
$: is_configured = $apikey !== "null" && $apikey !== "";
$: is_configured = $apikey && $apikey !== "null" && $apikey !== "";
$: settings_open = $page === "settings";
console.log($page);
</script>

View File

@@ -25,9 +25,7 @@
{hours}:{minutes}:{seconds}
</h1>
<section class="px-4 py-24 mx-auto max-w-7xl">
<div
class="w-full mx-auto space-y-5 sm:w-8/12 md:w-6/12 lg:w-4/12 xl:w-3/12"
>
<div class="w-full mx-auto space-y-5 sm:w-8/12 md:w-12 lg:w-12 xl:w-12">
<form
class="space-y-4"
onsubmit="event.preventDefault();"