Skip to content

Commit 806d631

Browse files
committed
address rabbit
1 parent bd1c91c commit 806d631

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/launch/launch-nft.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,21 +214,18 @@ export function LaunchNFT(props: {
214214

215215
try {
216216
updateStatus(i, {
217-
...currentStep,
218217
type: "pending",
219218
});
220219

221220
await executeStep(steps, currentStep.id);
222221

223222
updateStatus(i, {
224-
...currentStep,
225223
type: "completed",
226224
});
227225
} catch (error) {
228226
const parsedError = parseError(error);
229227

230228
updateStatus(i, {
231-
...currentStep,
232229
type: "error",
233230
message: parsedError,
234231
});

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/token/launch/launch-token.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,21 +157,18 @@ export function LaunchTokenStatus(props: {
157157

158158
try {
159159
updateStatus(i, {
160-
...currentStep,
161160
type: "pending",
162161
});
163162

164163
await executeStep(currentStep.id);
165164

166165
updateStatus(i, {
167-
...currentStep,
168166
type: "completed",
169167
});
170168
} catch (error) {
171169
const parsedError = parseError(error);
172170

173171
updateStatus(i, {
174-
...currentStep,
175172
type: "error",
176173
message: parsedError,
177174
});

0 commit comments

Comments
 (0)