mirror of
https://github.com/penpot/penpot.git
synced 2025-02-12 18:18:24 -05:00
✨ Reduce the max and min safe-int values to 1m.
This commit is contained in:
parent
0416ce8da6
commit
39db88c533
1 changed files with 2 additions and 2 deletions
|
@ -121,8 +121,8 @@
|
|||
(s/def ::point gpt/point?)
|
||||
(s/def ::id ::uuid)
|
||||
|
||||
(def max-safe-int 9007199254740991)
|
||||
(def min-safe-int -9007199254740991)
|
||||
(def max-safe-int 1000000)
|
||||
(def min-safe-int -1000000)
|
||||
|
||||
(s/def ::safe-integer
|
||||
#(and
|
||||
|
|
Loading…
Add table
Reference in a new issue