Skip to content

Commit f29a2c2

Browse files
committed
update tick calc
1 parent 8a2e39c commit f29a2c2

File tree

1 file changed

+1
-1
lines changed
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/utils

1 file changed

+1
-1
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/tokens/create/token/utils/calculate-tick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function getInitialTickValue(params: { startingPricePerToken: number }) {
99
// Round to nearest tick spacing
1010
const tick = Math.round(calculatedTick / TICK_SPACING) * TICK_SPACING;
1111

12-
return Math.abs(tick);
12+
return tick;
1313
}
1414

1515
export function isValidTickValue(tick: number) {

0 commit comments

Comments
 (0)