Skip to content

Commit 5aa6af4

Browse files
committed
fixing import name
1 parent 3e8222d commit 5aa6af4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

app/config/config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@ database.connect().catch((err) => {
88
console.error('Error connecting to the database', err.stack)
99
})
1010

11-
export const sql = database
12-
13-
export const AUTH_READING_RLS_POLICY = process.env.AUTH_READING_RLS_POLICY!
11+
export const sql = database

app/service/dashboardService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { sql, AUTH_READING_RLS_POLICY } from '../config/config.ts';
1+
import { sql } from '../config/config.ts';
22
import { nanoid } from 'nanoid';
33
import type { ILink, errorResponse } from '../types/TypeLink.ts';
44

0 commit comments

Comments
 (0)