From 94954f56b886127b1f4fea8e7318e1bc2548d235 Mon Sep 17 00:00:00 2001 From: William Oldham Date: Sat, 4 Nov 2023 13:28:28 +0000 Subject: [PATCH] Fix Unused Import Co-authored-by: mrjvs --- src/db/models/User.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/db/models/User.ts b/src/db/models/User.ts index e055009..6589011 100644 --- a/src/db/models/User.ts +++ b/src/db/models/User.ts @@ -1,11 +1,4 @@ -import { - Entity, - Index, - PrimaryKey, - Property, - Unique, - types, -} from '@mikro-orm/core'; +import { Entity, PrimaryKey, Property, Unique, types } from '@mikro-orm/core'; import { nanoid } from 'nanoid'; export type UserProfile = {