Skip to content

Commit

Permalink
fix: temp remove duration
Browse files Browse the repository at this point in the history
  • Loading branch information
Namaskar-1F64F committed Apr 10, 2024
1 parent 1faf1f6 commit e965768
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/actions/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export const MINIPOOL_PRELAUNCH_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
minipoolStatusField("prelaunch")
)

Expand Down Expand Up @@ -333,7 +333,7 @@ export const MINIPOOL_STREAMLINE_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
minipoolStatusField("prelaunch")
)
.setColor(0x7ddbd5)
Expand Down Expand Up @@ -366,7 +366,7 @@ export const MINIPOOL_LAUNCH_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
minipoolStatusField("launched")
)

Expand Down Expand Up @@ -400,7 +400,7 @@ export const MINIPOOL_STAKING_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
endTimeField(endTime),
minipoolStatusField("staking")
)
Expand Down Expand Up @@ -435,7 +435,7 @@ export const MINIPOOL_WITHDRAWABLE_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
minipoolStatusField("withdrawable")
)

Expand Down Expand Up @@ -469,7 +469,7 @@ export const MINIPOOL_FINISHED_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
endTimeField(endTime),
minipoolStatusField("finished")
)
Expand Down Expand Up @@ -504,7 +504,7 @@ export const MINIPOOL_CANCELED_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
endTimeField(endTime),
minipoolStatusField("canceled")
)
Expand Down Expand Up @@ -539,7 +539,7 @@ export const MINIPOOL_ERROR_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
endTimeField(endTime),
minipoolStatusField("error")
)
Expand Down Expand Up @@ -577,7 +577,7 @@ export const MINIPOOL_RESTAKE_TEMPLATE = (
.addFields(
pilotField(owner),
balloonField(nodeId),
tripDurationField(duration),
// tripDurationField(duration),
minipoolStatusField("finished -> prelaunch -> launched")
)
.setColor(0x7ddbd5)
Expand Down

0 comments on commit e965768

Please sign in to comment.