From a36553e4cf468b4930fd82a69b9a652f9e8f95a2 Mon Sep 17 00:00:00 2001 From: Paul Adamsen <117673433+pauladamseniii@users.noreply.github.com> Date: Mon, 3 Jul 2023 11:32:58 -0400 Subject: [PATCH] CEC-4565 - Remember previous deployment tab (#382) * CEC-4543 - Add location to digital twin map * remember previous deployment tab * different name --- src/components/Manifest/List/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Manifest/List/index.jsx b/src/components/Manifest/List/index.jsx index 6e22efc..ad52162 100644 --- a/src/components/Manifest/List/index.jsx +++ b/src/components/Manifest/List/index.jsx @@ -113,7 +113,7 @@ const MainForm = () => { const [orderBy, setOrderBy] = useState("id"); const [order, setOrder] = useState("asc"); const [search, setSearch] = useLocalStorage("DEPLOYMENT_SEARCH", ""); - const [active, setActive] = useLocalStorage("DEPLOYMENT_ACTIVE", "software"); + const [active, setActive] = useLocalStorage("DEPLOYMENT_TAB_TOGGLE", "software"); const [selected, setSelected] = useState([]); const [showDeleteModal, setShowDeleteModal] = useState(false);