fix lint errors

This commit is contained in:
Brandon Egger 2023-03-17 19:18:20 -05:00
parent 2c29d8ae3c
commit 538a373df7
2 changed files with 2 additions and 2 deletions

View File

@ -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}) => {

View File

@ -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.