feat: cleanup random page toasts

This commit is contained in:
2024-11-21 16:56:10 +01:00
parent 84aa846b87
commit ad4db882f0
3 changed files with 0 additions and 8 deletions

View File

@@ -151,7 +151,6 @@
}
onMount(async () => {
toast.loading($_("loading-cards"));
let page = 0;
let pagesize = 500;
while (page >= 0) {
@@ -172,8 +171,6 @@
dataLoaded = true;
page++;
}
toast.dismiss();
toast.success($_("all-cards-loaded"));
});
</script>