l-min-components 1.0.635 → 1.0.641
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
|
@@ -123,12 +123,12 @@ const AccountDropdown = (props) => {
|
|
|
123
123
|
window.location.port &&
|
|
124
124
|
window.location.host.includes("developer")
|
|
125
125
|
) {
|
|
126
|
-
window.location.href = `${window.location.protocol}//${window.location.hostname}:${window.location.port}
|
|
126
|
+
window.location.href = `${window.location.protocol}//${window.location.hostname}:${window.location.port}/developer`;
|
|
127
127
|
} else if (
|
|
128
128
|
!window.location.port &&
|
|
129
129
|
window.location.host.includes("developer")
|
|
130
130
|
) {
|
|
131
|
-
window.location.href = `${window.location.protocol}//${window.location.hostname}
|
|
131
|
+
window.location.href = `${window.location.protocol}//${window.location.hostname}/developer`;
|
|
132
132
|
}
|
|
133
133
|
}}
|
|
134
134
|
key={idx}
|
|
@@ -93,7 +93,7 @@ export const sideMenuOptions = [
|
|
|
93
93
|
userType: "developer",
|
|
94
94
|
routes: [
|
|
95
95
|
{
|
|
96
|
-
path: "/",
|
|
96
|
+
path: "/developer",
|
|
97
97
|
icon: <ApiIcon />,
|
|
98
98
|
iconActive: <ApiIconActive />,
|
|
99
99
|
text: "API",
|
|
@@ -108,7 +108,7 @@ export const sideMenuOptions = [
|
|
|
108
108
|
// notifications: 5,
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
|
-
path: "/report",
|
|
111
|
+
path: "/developer/report",
|
|
112
112
|
icon: <AwardIcon />,
|
|
113
113
|
iconActive: <AwardIconActive />,
|
|
114
114
|
text: "Report",
|