From 99d7055a484f5878e3a3e9b83e2931665bd7f4ab Mon Sep 17 00:00:00 2001 From: Ray Schamp Date: Sat, 24 Oct 2015 12:20:19 -0400 Subject: [PATCH] Fix GH-124: Fix studio thumbnail URLs --- src/components/carousel/carousel.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/carousel/carousel.jsx b/src/components/carousel/carousel.jsx index e7dc7c382..1a0bd6711 100644 --- a/src/components/carousel/carousel.jsx +++ b/src/components/carousel/carousel.jsx @@ -38,7 +38,7 @@ var Carousel = React.createClass({ var href = ''; switch (item.type) { case 'gallery': - href = '/studio/' + item.id + '/'; + href = '/studios/' + item.id + '/'; break; case 'project': href = '/projects/' + item.id + '/';