From 7266ea87cbe4a5cc07c3f7cae2a5b150a8b691ea Mon Sep 17 00:00:00 2001 From: "Andrew Coates (REDMOND)" Date: Mon, 13 Apr 2020 08:31:13 -0700 Subject: [PATCH] Fix fast refresh in playground app --- packages/playground/windows/playground/MainPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playground/windows/playground/MainPage.cpp b/packages/playground/windows/playground/MainPage.cpp index f39a9df925e..b1e7b1dd4ca 100644 --- a/packages/playground/windows/playground/MainPage.cpp +++ b/packages/playground/windows/playground/MainPage.cpp @@ -40,7 +40,7 @@ void MainPage::OnLoadClick( host.InstanceSettings().UseWebDebugger(x_UseWebDebuggerCheckBox().IsChecked().GetBoolean()); host.InstanceSettings().UseDirectDebugger(x_UseDirectDebuggerCheckBox().IsChecked().GetBoolean()); host.InstanceSettings().DebuggerBreakOnNextLine(x_BreakOnFirstLineCheckBox().IsChecked().GetBoolean()); - host.InstanceSettings().UseFastRefresh(x_BreakOnFirstLineCheckBox().IsChecked().GetBoolean()); + host.InstanceSettings().UseFastRefresh(x_UseFastRefreshCheckBox().IsChecked().GetBoolean()); host.InstanceSettings().DebuggerPort(static_cast(std::stoi(std::wstring(x_DebuggerPort().Text())))); // Nudge the ReactNativeHost to create the instance and wrapping context