From 108b451346f8b0bd1450d1a07be95a689af12368 Mon Sep 17 00:00:00 2001 From: Carlos Cruz Date: Tue, 27 Jun 2023 11:00:27 +0100 Subject: [PATCH] fix url typo (#9) --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 23b9672..34692f8 100644 --- a/app.js +++ b/app.js @@ -8,7 +8,7 @@ import healthRouter from "./routes/health.js"; import { normalizePort, isProduction, isDevelopment } from "./utils/index.js"; const port = normalizePort(process.env.PORT || "8080"); -const originRegExp = /^(.*\.)?opentargets\.(org|xwz)$/; +const originRegExp = /^(.*\.)?opentargets\.(org|xyz)$/; const app = express();