From 996e1286cbfdc8c86469c27bafc4beef42b2ecbf Mon Sep 17 00:00:00 2001 From: Gordon Pedersen Date: Tue, 18 Jun 2024 11:43:38 +1000 Subject: [PATCH] fixed small copy-paste error --- Components/Layout/MainLayout.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/Layout/MainLayout.razor b/Components/Layout/MainLayout.razor index dcc75dd..3224ce9 100644 --- a/Components/Layout/MainLayout.razor +++ b/Components/Layout/MainLayout.razor @@ -25,7 +25,7 @@ } else if (!string.IsNullOrEmpty(State.SharePhoto)) { NavigationManager.NavigateTo($"/sharepic/{State.SharePhoto}"); - State.ShareString = null; + State.SharePhoto = null; } }