Skip to content

Commit

Permalink
Clean
Browse files Browse the repository at this point in the history
  • Loading branch information
cr0wst committed Feb 3, 2025
1 parent eb0040a commit 4d1d5c6
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/ambient.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import * as mdi from '@mdi/js';

type RestrictionFilters = {
areas: string[];
search: string;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/map/AirspaceMap.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import { onMount } from 'svelte';
import MdiIcon from '../MdiIcon.svelte';
import Legend from './Legend.svelte';
import SplitName from './SplitName.svelte';
import SplitName from '$lib/components/splits/SplitName.svelte';
interface Area {
id: string;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/restrictions/FilterPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { restrictionFilters } from '$lib/state.svelte.js';
import { onMount } from 'svelte';
import { useSessionStorage } from '$lib/sessionStore.svelte';
import SplitDropdown from './SplitDropdown.svelte';
import SplitDropdown from '$lib/components/splits/SplitDropdown.svelte';
import MdiIcon from '../MdiIcon.svelte';
let { areaMap, splits }: { areaMap: Map<string, { id: string; label: string }[]>; splits: any } =
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { restrictionFilters } from '$lib/state.svelte';
import SplitName from '../map/SplitName.svelte';
import SplitName from './SplitName.svelte';
import { useSessionStorage } from '$lib/sessionStore.svelte';
import MdiIcon from '../MdiIcon.svelte';
Expand Down
File renamed without changes.

0 comments on commit 4d1d5c6

Please sign in to comment.