feature flags

This commit is contained in:
2026-01-07 22:05:53 +01:00
parent 1b63fa646c
commit 606b64cec7
530 changed files with 2092 additions and 2943 deletions

View File

@@ -42,7 +42,8 @@ export const ApiModule = new ContainerModule((options) => {
ClientClass: any,
context: any
) => {
const baseUrl = context.get(CONFIG_TOKEN);
const getConfig = context.get(CONFIG_TOKEN);
const baseUrl = getConfig(); // Call function to get fresh config
const errorReporter = context.get(ERROR_REPORTER_TOKEN);
const logger = context.get(LOGGER_TOKEN);