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}>
|
||||
<Header />
|
||||
|
||||
{state === undefined ? (
|
||||
{state == undefined ? (
|
||||
<Center>
|
||||
<Text fw={700}>
|
||||
Monitor State is not defined now, please check your worker's status and KV
|
||||
|
|
|
|||
Loading…
Reference in New Issue