From 605d04580c479cdf6eae30b932fba10ae26d3a9e Mon Sep 17 00:00:00 2001 From: d11n Date: Wed, 9 Feb 2022 04:24:25 +0100 Subject: [PATCH] Fix subnav on store pairing view (#3438) Fixes #3431. --- BTCPayServer/Views/UIStores/_Nav.cshtml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/BTCPayServer/Views/UIStores/_Nav.cshtml b/BTCPayServer/Views/UIStores/_Nav.cshtml index 4c199c7c9..73b98dd5c 100644 --- a/BTCPayServer/Views/UIStores/_Nav.cshtml +++ b/BTCPayServer/Views/UIStores/_Nav.cshtml @@ -1,17 +1,20 @@ @using BTCPayServer.Client +@{ + var storeId = Context.GetStoreData()?.Id; +}