From 70694ae21d893eca81a4086985916d3cfc5cb207 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 5 Oct 2024 16:02:06 +0530 Subject: [PATCH] chore: -rm 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 28975478..5e3383ee 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, encrypt, decrypt } from '../utils/auth'; +import { encrypt, decrypt } from '../utils/auth'; import { requireSignIn } from '../middlewares/auth'; export const router = Router();