From 33c43c7a30aa4a45d625848aa5548e815426f602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?j=C3=A9r=C3=B4me=20boileux?= Date: Wed, 21 Jan 2026 23:34:08 +0100 Subject: [PATCH] chore: Update locale repository path --- app/modules/env.server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/env.server.ts b/app/modules/env.server.ts index 467e27d..bfef9d8 100644 --- a/app/modules/env.server.ts +++ b/app/modules/env.server.ts @@ -53,7 +53,7 @@ export function getPrivateEnvVars(): PrivateEnvVars { } const githubRepoAPIUrl = `https://api.github.com/repos/${githubAccount}/${githubRepo}/contents`; - const localeRepoAPIUrl = untildify(`~/projects/${githubRepo}`); + const localeRepoAPIUrl = untildify(`~/projects/ocobo/${githubRepo}`); const readContentFrom: 'locale' | 'github' = process.env.NODE_ENV === 'production'