From e81075c64c473e0c2c5fc595230470e90df403e1 Mon Sep 17 00:00:00 2001 From: candela97 <54083835+candela97@users.noreply.github.com> Date: Fri, 8 Nov 2024 20:41:15 +0800 Subject: [PATCH] Fix missing FKeepSSACheckboxState feature on CRegisterKey --- src/js/Content/Features/Store/RegisterKey/CRegisterKey.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/js/Content/Features/Store/RegisterKey/CRegisterKey.ts b/src/js/Content/Features/Store/RegisterKey/CRegisterKey.ts index 800825f6b..085fe9134 100644 --- a/src/js/Content/Features/Store/RegisterKey/CRegisterKey.ts +++ b/src/js/Content/Features/Store/RegisterKey/CRegisterKey.ts @@ -1,4 +1,5 @@ import FMultiProductKeys from "./FMultiProductKeys"; +import FKeepSSACheckboxState from "@Content/Features/Common/FKeepSSACheckboxState"; import Context from "@Content/Modules/Context/Context"; import ContextType from "@Content/Modules/Context/ContextType"; @@ -8,6 +9,7 @@ export default class CRegisterKey extends Context { super(ContextType.REGISTER_KEY, [ FMultiProductKeys, + FKeepSSACheckboxState, ]); } }