fix refactor fault

This commit is contained in:
Tim Daubenschütz 2015-05-20 09:08:26 +02:00
parent 2b8e1d604b
commit 60c4b3ac8b
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ let Route = Router.Route;
let routes = (
<Route name="app" path="/" handler={AscribeApp}>
<Route name="pieces" handler={PieceList} />
<Route name="piece" path="/artworks/:bitcoin_ID_noPrefix" handler={Piece} />
<Route name="piece" path="/pieces/:bitcoin_ID_noPrefix" handler={Piece} />
</Route>
);