realtimex-crm 0.7.13 → 0.7.14

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "realtimex-crm",
3
- "version": "0.7.13",
3
+ "version": "0.7.14",
4
4
  "description": "RealTimeX CRM - A full-featured CRM built with React, shadcn-admin-kit, and Supabase. Fork of Atomic CRM with RealTimeX App SDK integration.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -106,11 +106,10 @@ const SettingsForm = ({
106
106
  });
107
107
  if (!identity) return null;
108
108
 
109
- const handleClickOpenPasswordChange = () => {
110
- // Redirect to forgot-password page which uses OTP flow
111
- navigate('/forgot-password');
112
- };
113
-
109
+ const handleClickOpenPasswordChange = () => {
110
+ // Navigate directly to the change password page for authenticated users
111
+ navigate('/change-password');
112
+ };
114
113
  const handleAvatarUpdate = async (values: any) => {
115
114
  mutateSale(values);
116
115
  };