mirror of
https://github.com/penpot/penpot.git
synced 2026-04-29 05:08:08 +00:00
✨ Reduce the max and min safe-int values to 1m.
This commit is contained in:
parent
0416ce8da6
commit
39db88c533
@ -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…
x
Reference in New Issue
Block a user