diff --git a/ditto-lucid.cabal b/ditto-lucid.cabal
--- a/ditto-lucid.cabal
+++ b/ditto-lucid.cabal
@@ -1,5 +1,5 @@
 Name:                ditto-lucid
-Version:             0.1.0.1
+Version:             0.1.0.2
 Synopsis:            Add support for using lucid with Ditto
 Description:         Ditto is a library for building and validating forms using applicative functors. This package add support for using ditto with lucid.
 License:             BSD3
diff --git a/src/Ditto/Lucid/Named.hs b/src/Ditto/Lucid/Named.hs
--- a/src/Ditto/Lucid/Named.hs
+++ b/src/Ditto/Lucid/Named.hs
@@ -179,18 +179,12 @@
   -> Form m input err (HtmlT f ()) Int
 inputInt getInput name initialValue = G.input getInput inputField initialValue name
   where
-    min = toPathPiece (minBound :: Int)
-    {-# INLINE min #-}
-    max = toPathPiece (maxBound :: Int)
-    {-# INLINE max #-}
     inputField i a =
       input_
         [ type_ "number"
         , id_ (toPathPiece i)
         , name_ (toPathPiece i)
         , value_ (toPathPiece a)
-        , min_ min
-        , max_ max
         ]
 
 inputDouble
