problem: not clear when someone makes a purchase

resolve https://github.com/nostrocket/hypergolic/issues/94
This commit is contained in:
Bob
2024-08-18 14:18:41 +08:00
parent e20bcd2012
commit f2fa67a1a9
4 changed files with 124 additions and 7 deletions

View File

@@ -27,16 +27,19 @@
sessionStarted = true;
}
onMount(()=>{getBitcoinTip();})
setInterval(function () {
onMount(() => {
getBitcoinTip();
}, 2* 60 * 1000);
});
setInterval(
function () {
getBitcoinTip();
},
2 * 60 * 1000
);
</script>
<ModeWatcher defaultMode="dark" />
<SidePanelLayout>
<div slot="content"><slot></slot></div>
</SidePanelLayout>
<style></style>