diff --git a/client/homebrew/navbar/navbar.jsx b/client/homebrew/navbar/navbar.jsx
index a8a26e5..7c82206 100644
--- a/client/homebrew/navbar/navbar.jsx
+++ b/client/homebrew/navbar/navbar.jsx
@@ -34,7 +34,7 @@ var Navbar = React.createClass({
The Homebrewery
- v2.2.7
+ v2.2.8
{this.renderChromeWarning()}
diff --git a/package.json b/package.json
index f61dfbc..55a06fd 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "homebrewery",
"description": "Create authentic looking D&D homebrews using only markdown",
- "version": "2.2.7",
+ "version": "2.2.8",
"scripts": {
"postinstall": "gulp prod",
"start": "node server.js"
diff --git a/server/homebrew.api.js b/server/homebrew.api.js
index 7e4f9a4..1ca8fee 100644
--- a/server/homebrew.api.js
+++ b/server/homebrew.api.js
@@ -30,12 +30,6 @@ var getTopBrews = function(cb){
module.exports = function(app){
- app.get('/api/top', function(req, res){
- getTopBrews(function(topBrews){
- return res.json(topBrews);
- });
- });
-
app.post('/api', function(req, res){
var newHomebrew = new HomebrewModel(req.body);
newHomebrew.save(function(err, obj){