mirror of
https://github.com/aljazceru/hypergolic.git
synced 2025-12-18 05:54:21 +01:00
problem: not clear when someone makes a purchase
resolve https://github.com/nostrocket/hypergolic/issues/94
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user