diff --git a/src/components/ResourceTable.tsx b/src/components/ResourceTable.tsx
index 8cbe94e..d5b56d0 100644
--- a/src/components/ResourceTable.tsx
+++ b/src/components/ResourceTable.tsx
@@ -6,7 +6,7 @@ import Link from 'next/link';
 import { translateEnumPlatform, translateEnumSkill } from '~/utils/enumWordLut';
 import { type ChangeEvent, type Dispatch, type SetStateAction, useState } from 'react';
 import { ChevronDownIcon } from '@heroicons/react/24/outline';
-import { ParsedUrlQuery, ParsedUrlQueryInput } from 'querystring';
+import { type ParsedUrlQuery, type ParsedUrlQueryInput } from 'querystring';
 
 const ResourceEntry = ({resource}: {resource: AuditoryResource}) => {
     const ResourceInfo = ({resource}: {resource: AuditoryResource}) => {
diff --git a/src/utils/enumWordLut.ts b/src/utils/enumWordLut.ts
index ea681c3..50b2d0c 100644
--- a/src/utils/enumWordLut.ts
+++ b/src/utils/enumWordLut.ts
@@ -1,4 +1,4 @@
-import { Skill, type Platform } from "@prisma/client";
+import { type Skill, type Platform } from "@prisma/client";
 
 /**
  * Takes a platform enum and translates it to readable form.