From 30e62b397d0e8d6ee1462a315a490f7939805452 Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Tue, 2 Jul 2024 11:59:58 +0200 Subject: [PATCH] refactoring --- src/components/client/admin/PostTable.tsx | 3 +-- src/util/{Utils.ts => utils.ts} | 0 2 files changed, 1 insertion(+), 2 deletions(-) rename src/util/{Utils.ts => utils.ts} (100%) diff --git a/src/components/client/admin/PostTable.tsx b/src/components/client/admin/PostTable.tsx index 72d653b..071babe 100644 --- a/src/components/client/admin/PostTable.tsx +++ b/src/components/client/admin/PostTable.tsx @@ -19,8 +19,7 @@ import { PostServerActions, } from "@/app/lib/actions/entityManagement/post/postActions"; import { PostViewProps } from "@/views/admin/ClientPostView"; -import { aifa } from "@/util/utils"; -import { StateHook } from "@/util/state"; +import { aifa, StateHook } from "@/util/"; export type PostTableStateProps = { posts: StateHook; diff --git a/src/util/Utils.ts b/src/util/utils.ts similarity index 100% rename from src/util/Utils.ts rename to src/util/utils.ts