shogun-button-react 6.9.6 → 6.9.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -738,6 +738,8 @@ export const ShogunButton = (() => {
738
738
  if (formMode === "signup") {
739
739
  const result = await signUp("password", formUsername, formPassword, formPasswordConfirm);
740
740
  if (result && result.success) {
741
+ // Password hint functionality has been removed from shogun-core
742
+ // Users should store hints manually in their own data structures if needed
741
743
  setModalIsOpen(false);
742
744
  }
743
745
  else if (result && result.error) {
@@ -841,10 +843,6 @@ export const ShogunButton = (() => {
841
843
  setLoading(false);
842
844
  }
843
845
  };
844
- const handleForgotPassword = async (e) => {
845
- e.preventDefault();
846
- setError("Password recovery is no longer supported.");
847
- };
848
846
  const handleExportPair = async () => {
849
847
  setError("");
850
848
  setLoading(true);