File tree 2 files changed +9
-10
lines changed
src/features/misc/listing-form
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ export const Nav = ({ state }) => {
26
26
// {
27
27
// name: "Vesting",
28
28
// },
29
- {
30
- name : "Fees" ,
31
- } ,
29
+ // {
30
+ // name: "Fees",
31
+ // },
32
32
] ) ,
33
33
34
34
{
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import { pushData } from "../../../lib/mixpanel";
9
9
import { triggerAlert } from "../../../lib/toastify" ;
10
10
import { BasicInformation } from "./components/basic-information" ;
11
11
import { ContractInformation } from "./components/contract-information" ;
12
- import { FeesInformation } from "./components/fees-information" ;
13
12
import { Nav } from "./components/nav" ;
14
13
import { SocialInformation } from "./components/social-information" ;
15
14
import { Submit } from "./components/submit" ;
@@ -174,14 +173,14 @@ export const Listing = () => {
174
173
{ /* {actualPage === 3 ? (
175
174
<VestingInformation state={state} dispatch={dispatch} />
176
175
) : null} */ }
177
- { actualPage === 3 ? (
176
+ { /* { actualPage === 3 ? (
178
177
<FeesInformation state={state} dispatch={dispatch} />
179
- ) : null }
178
+ ) : null} */ }
180
179
</ >
181
180
) }
182
- { actualPage === 4 ? < Submit state = { state } /> : null }
181
+ { actualPage === 3 ? < Submit state = { state } /> : null }
183
182
< div className = "flex" >
184
- { actualPage !== 4 ? (
183
+ { actualPage !== 3 ? (
185
184
< Button
186
185
extraCss = "w-[160px]"
187
186
onClick = { ( ) => {
@@ -194,14 +193,14 @@ export const Listing = () => {
194
193
? pushData ( `List now Clicked` )
195
194
: pushData ( `Edit now Clicked` ) ;
196
195
197
- setActualPage ( 4 ) ;
196
+ setActualPage ( 3 ) ;
198
197
}
199
198
} }
200
199
>
201
200
{ ! editAssetReducer ? "List now" : "Edit now" }
202
201
</ Button >
203
202
) : null }
204
- { actualPage === 4 || actualPage === 3 ? null : (
203
+ { actualPage === 3 || actualPage === 2 ? null : (
205
204
< Button
206
205
extraCss = "w-[180px] ml-[20px]"
207
206
onClick = { ( ) => {
You can’t perform that action at this time.
0 commit comments