From 90edcf14e1f6851388c2e4cda87b9de64ee853f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Dere=C5=BEi=C4=87?= Date: Tue, 9 Jan 2024 15:03:36 +0100 Subject: [PATCH] refactor: changed db collection name --- app/lib/dbClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/dbClient.ts b/app/lib/dbClient.ts index 94bd145..e8c8622 100644 --- a/app/lib/dbClient.ts +++ b/app/lib/dbClient.ts @@ -35,6 +35,6 @@ export default clientPromise export const getDbClient = async () => { const client = await clientPromise; - const db = client.db("rezije"); + const db = client.db("utility-bills"); return(db); }