From d70600a5da77f3c2f03e6be106a142f152264558 Mon Sep 17 00:00:00 2001 From: Bohdan Ohorodnii Date: Mon, 6 Nov 2023 12:17:27 +0200 Subject: [PATCH] fix CORS issue --- api/src/cors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/cors.rs b/api/src/cors.rs index 1e68fa57..203b7b30 100644 --- a/api/src/cors.rs +++ b/api/src/cors.rs @@ -34,7 +34,7 @@ impl Fairing for CORS { Err(_) => { response.set_header(Header::new( "Access-Control-Allow-Origin", - "https://zksync-plugin.nethermind.dev", + "https://zksync-plugin.nethermind.dev/", )); } }