diff --git a/src/Yesod/Alert.hs b/src/Yesod/Alert.hs
--- a/src/Yesod/Alert.hs
+++ b/src/Yesod/Alert.hs
@@ -7,7 +7,7 @@
 --      ...
 --      defaultLayout widget = do
 --      ...
---      alerts  <- getAlerts
+--      alerts <- getAlerts
 --      ...
 -- @
 --
@@ -54,13 +54,13 @@
     , AlertStatus(..)
     ) where
 
-import Data.Maybe (fromMaybe)
-import Data.Text
-import Safe (readMay)
-import Text.Blaze.Html.Renderer.Text
-import Web.Alert
-import Yesod.Core
-import qualified Data.Text.Lazy as TL
+import           Data.Maybe                    (fromMaybe)
+import           Data.Text                     hiding (show)
+import qualified Data.Text.Lazy                as TL
+import           Safe                          (readMay)
+import           Text.Blaze.Html.Renderer.Text
+import           Web.Alert
+import           Yesod.Core
 
 -- | Set an 'Alert'
 setAlert :: MonadHandler m => Alert -> m ()
diff --git a/yesod-alerts.cabal b/yesod-alerts.cabal
--- a/yesod-alerts.cabal
+++ b/yesod-alerts.cabal
@@ -1,5 +1,5 @@
 name:                yesod-alerts
-version:             0.1.4.0
+version:             0.1.5.0
 synopsis:            Alert messages for the Yesod framework
 description:         Use the "alerts" package with the Yesod framework
 homepage:            https://github.com/alx741/yesod-alerts#readme
