From d345b1a90612d3ca6bb83da398a7d82d96f5cf91 Mon Sep 17 00:00:00 2001 From: Joep Meindertsma Date: Tue, 7 Nov 2023 12:07:36 +0100 Subject: [PATCH] Fix lint --- browser/svelte/src/stores/getResource.ts | 4 ++-- browser/svelte/src/stores/getValue.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/browser/svelte/src/stores/getResource.ts b/browser/svelte/src/stores/getResource.ts index 2d1d572bc..ab6125096 100644 --- a/browser/svelte/src/stores/getResource.ts +++ b/browser/svelte/src/stores/getResource.ts @@ -1,6 +1,6 @@ -import { type FetchOpts, Resource, Store } from '@tomic/lib'; +import { FetchOpts, Resource, Store } from '@tomic/lib'; -import { type Readable, get, readable, Subscriber } from 'svelte/store'; +import { Readable, get, readable, Subscriber } from 'svelte/store'; import { store } from './store'; const subscribeToADStore = ( diff --git a/browser/svelte/src/stores/getValue.ts b/browser/svelte/src/stores/getValue.ts index af4220208..a2da6d07e 100644 --- a/browser/svelte/src/stores/getValue.ts +++ b/browser/svelte/src/stores/getValue.ts @@ -1,5 +1,5 @@ -import { Resource, type JSONValue } from '@tomic/lib'; -import { type Readable, type Writable, get } from 'svelte/store'; +import { Resource, JSONValue } from '@tomic/lib'; +import { Readable, Writable, get } from 'svelte/store'; import { store } from './store';