File rename.
This commit is contained in:
parent
82400adfc2
commit
675cb0b3ca
@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import type { Task } from "$lib/server/services/tasks";
|
||||
import type { Task } from "$lib/server/services/TasksService";
|
||||
|
||||
type DisplayableTask = Task & {
|
||||
taskId: NonNullable<Task["taskId"]>;
|
||||
@ -168,4 +168,3 @@ let { task, parent, children }: {
|
||||
</p>
|
||||
</div>
|
||||
{/snippet}
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import TasksService from "$lib/server/services/tasks";
|
||||
import TasksService from "$lib/server/services/TasksService";
|
||||
import type { PageServerLoad } from "./$types";
|
||||
|
||||
export const load: PageServerLoad = async () => {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import logger from "$lib/server/logger";
|
||||
import type { NewTask } from "$lib/server/services/tasks";
|
||||
import TasksService from "$lib/server/services/tasks";
|
||||
import type { NewTask } from "$lib/server/services/TasksService";
|
||||
import TasksService from "$lib/server/services/TasksService";
|
||||
import { error, fail, redirect } from "@sveltejs/kit";
|
||||
import type { Actions, PageServerLoad } from "./$types";
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user