From 490cb57b66db628f0b1f203ed8d594fcbaafc249 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 12 Aug 2025 12:29:59 +0200 Subject: [PATCH] fixes --- server/utils/nocodb-events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/utils/nocodb-events.ts b/server/utils/nocodb-events.ts index cb440ca..b334299 100644 --- a/server/utils/nocodb-events.ts +++ b/server/utils/nocodb-events.ts @@ -1,5 +1,6 @@ // server/utils/nocodb-events.ts import type { Event, EventRSVP, EventsResponse, EventFilters } from '~/utils/types'; +import { getEffectiveNocoDBConfig } from './admin-config'; /** * Creates a client for interacting with the Events NocoDB table @@ -7,7 +8,6 @@ import type { Event, EventRSVP, EventsResponse, EventFilters } from '~/utils/typ */ export function createNocoDBEventsClient() { // Get effective configuration from admin config system - const { getEffectiveNocoDBConfig } = require('./admin-config'); const effectiveConfig = getEffectiveNocoDBConfig(); const baseUrl = effectiveConfig.url;