Skip to content

Commit 721db03

Browse files
committed
Fix linter
1 parent 28db601 commit 721db03

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

frontend/src/lib/components/mod-details/ModDetails.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import { CompatibilityState, GetModDetailsDocument } from '$lib/generated';
1616
import { type PopupSettings, getModalStore, popup } from '$lib/skeletonExtensions';
1717
import { addQueuedModAction } from '$lib/store/actionQueue';
18-
import { canInstallMods, canModify, lockfileMods, manifestMods } from '$lib/store/ficsitCLIStore';
18+
import { canInstallMods, lockfileMods, manifestMods } from '$lib/store/ficsitCLIStore';
1919
import { error, expandedMod, siteURL } from '$lib/store/generalStore';
2020
import { search } from '$lib/store/modFiltersStore';
2121
import { offline } from '$lib/store/settingsStore';

frontend/src/lib/components/modals/first-time-setup/FirstTimeSetupModal.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script lang="ts">
2-
import { mdiClock, mdiPlay, mdiTimerSandFull, mdiTimerSandPaused, mdiWatch, mdiWeb } from '@mdi/js';
3-
import { SlideToggle } from '@skeletonlabs/skeleton';
2+
import { mdiClock, mdiPlay, mdiTimerSandFull, mdiWeb } from '@mdi/js';
43
import { T } from '@tolgee/svelte';
54
65
import LanguageSelector from './LanguageSelector.svelte';

frontend/src/lib/skeletonExtensions/popup.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* eslint-disable no-restricted-imports */
2+
// This is the one place we're allowed to import popup from skeleton, because we're extending it for everything else to use.
13
import { type PopupSettings, popup as skeletonPopup } from '@skeletonlabs/skeleton';
24

35
export type { PopupSettings } from '@skeletonlabs/skeleton';

0 commit comments

Comments
 (0)