use ++ instead of <> to fix the build

This commit is contained in:
Tom Sydney Kerckhove 2021-05-20 16:00:55 +02:00
parent 59ef730317
commit 884d937792

View File

@ -31,6 +31,6 @@ breadcrumbs = do
(title, next) <- breadcrumb this
if this `elem` map fst back
then
error $ "yesod-core: infinite recursion in breadcrumbs at " <> show title
error $ "yesod-core: infinite recursion in breadcrumbs at " ++ show title
else
go ((this, title) : back) next