From f2b5f2fbb2d63ff0ca841e1fe207aa19e72e88a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Wed, 27 Nov 2024 12:01:48 +0900 Subject: [PATCH] Fix more --- crates/next-api/src/instrumentation.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crates/next-api/src/instrumentation.rs b/crates/next-api/src/instrumentation.rs index 5c414d0d7eb2c..2fe8c83411eca 100644 --- a/crates/next-api/src/instrumentation.rs +++ b/crates/next-api/src/instrumentation.rs @@ -113,7 +113,8 @@ impl InstrumentationEndpoint { Value::new(ServerContextType::Instrumentation { app_dir: this.app_dir, ecmascript_client_reference_transition_name: this - .ecmascript_client_reference_transition_name, + .ecmascript_client_reference_transition_name + .map(|v| *v), }), this.project.next_mode(), ) @@ -165,7 +166,8 @@ impl InstrumentationEndpoint { Value::new(ServerContextType::Instrumentation { app_dir: this.app_dir, ecmascript_client_reference_transition_name: this - .ecmascript_client_reference_transition_name, + .ecmascript_client_reference_transition_name + .map(|v| *v), }), this.project.next_mode(), )