From 14ae8b2acb089d7b2a8571bf77e124b629e3c201 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 2 Oct 2024 23:48:04 +0530 Subject: [PATCH] chore: remove unused import --- server/src/routes/proxy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/routes/proxy.ts b/server/src/routes/proxy.ts index dd57129b..c5821270 100644 --- a/server/src/routes/proxy.ts +++ b/server/src/routes/proxy.ts @@ -1,6 +1,6 @@ import { Router, Request, Response } from 'express'; import User from '../models/User'; -import { hashPassword, comparePassword } from '../utils/auth'; +import { hashPassword } from '../utils/auth'; export const router = Router();