+
{@html iconLoader}
+ {#if $state.includes("fetching")}
+
Fetching resources, cancel request
+ {/if}
diff --git a/src/Components/Shared/Tag.svelte b/src/Components/Shared/Tag.svelte
index a10310b4..89870cf4 100644
--- a/src/Components/Shared/Tag.svelte
+++ b/src/Components/Shared/Tag.svelte
@@ -8,7 +8,7 @@
border: 1px solid var(--color-red);
border-radius: var(--border-radius);
color: var(--color-red);
- font-size: 0.313rem;
+ font-size: 0.563rem;
font-weight: 500;
letter-spacing: 0.022rem;
line-height: 0.75rem;
diff --git a/src/Components/Sidebar/Sidebar.svelte b/src/Components/Sidebar/Sidebar.svelte
index 1004e70d..df25ad8b 100644
--- a/src/Components/Sidebar/Sidebar.svelte
+++ b/src/Components/Sidebar/Sidebar.svelte
@@ -110,9 +110,7 @@
state.add("fetching");
// get response from valid url
const response = await getRemoteFile(url);
- if (response.error) {
- log.add(response.error, "error", true);
- } else if (response.contents) {
+ if (response.contents) {
const type = url.substring(url.lastIndexOf(".") + 1);
newItem(type, response.contents, url);
}
@@ -197,6 +195,7 @@