fix: state is null (#106)
Looks fine, thanks for contributing!
It was `undefined` in a previous version, but I forgot to change it afterwards.😂
pull/108/head
parent
4bcf4173ea
commit
8a6cde7240
|
|
@ -51,7 +51,7 @@ export default function Home({
|
||||||
<main className={inter.className}>
|
<main className={inter.className}>
|
||||||
<Header />
|
<Header />
|
||||||
|
|
||||||
{state === undefined ? (
|
{state == undefined ? (
|
||||||
<Center>
|
<Center>
|
||||||
<Text fw={700}>
|
<Text fw={700}>
|
||||||
Monitor State is not defined now, please check your worker's status and KV
|
Monitor State is not defined now, please check your worker's status and KV
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue