diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-04-01 16:01:53 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-04-01 16:01:53 -0400 |
| commit | fb4dc62b7b21cf3724e8f425691bc9dec6c2e25e (patch) | |
| tree | 7358b62ee7bfd685d12af04a06e051af5c8e78d5 | |
| parent | fix lint errors in theme.ts (diff) | |
| download | sharkey-fb4dc62b7b21cf3724e8f425691bc9dec6c2e25e.tar.gz sharkey-fb4dc62b7b21cf3724e8f425691bc9dec6c2e25e.tar.bz2 sharkey-fb4dc62b7b21cf3724e8f425691bc9dec6c2e25e.zip | |
fix lint errors in store.ts
| -rw-r--r-- | packages/frontend/src/store.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 7628be9334..245833fb43 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -13,7 +13,8 @@ import type { Plugin } from '@/plugin.js'; import { miLocalStorage } from '@/local-storage.js'; import { Pizzax } from '@/lib/pizzax.js'; import { DEFAULT_DEVICE_KIND } from '@/utility/device-kind.js'; -import { defaultFollowingFeedState, type FollowingFeedState } from '@/utility/following-feed-utils'; +import { defaultFollowingFeedState } from '@/utility/following-feed-utils.js'; +import type { FollowingFeedState } from '@/utility/following-feed-utils.js'; import { searchEngineMap } from '@/utility/search-engine-map.js'; /** |