fix: fix imports (...again)

This commit is contained in:
Spectralitree 2021-12-11 18:45:08 +01:00
parent 30402558e6
commit 8d8d7e48ed
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
<script lang="ts">
import { Card, CardBody } from 'sveltestrap';
import CardsHeader from '../CardsHeader.svelte';
import SystemBody from './SystemBody.svelte';
import SystemPrivacy from './SystemPrivacy.svelte';
import SystemBody from './Body.svelte';
import SystemPrivacy from './Privacy.svelte';
export let user;
export let isPublic = true;

View File

@ -3,7 +3,7 @@
import { navigate, useLocation } from "svelte-navigator";
import { currentUser, loggedIn } from '../stores';
import System from '../lib/system/System.svelte';
import System from '../lib/system/Main.svelte';
import PKAPI from '../api';
import type Sys from '../api/system';