diff --git a/ts/graphs/WithGraphData.svelte b/ts/graphs/WithGraphData.svelte
new file mode 100644
index 000000000..7c3af297a
--- /dev/null
+++ b/ts/graphs/WithGraphData.svelte
@@ -0,0 +1,31 @@
+
+
+
+
diff --git a/ts/graphs/asyncReactive.ts b/ts/graphs/asyncReactive.ts
index 5016c7227..d53c14895 100644
--- a/ts/graphs/asyncReactive.ts
+++ b/ts/graphs/asyncReactive.ts
@@ -27,6 +27,7 @@ function useAsyncReactive(
promise,
($promise, set: (error: E | null) => void) => {
$promise.catch((error: E) => set(error));
+ return () => set(null);
},
null
);