From 032299b7dbeba12aece114665e84eb25a2d673e4 Mon Sep 17 00:00:00 2001 From: Enrico Fasoli Date: Tue, 15 Dec 2015 23:49:47 +0100 Subject: [PATCH] remove useless button --- webapp/pages/profile.jsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/webapp/pages/profile.jsx b/webapp/pages/profile.jsx index d9b0ba8..cfe82c3 100644 --- a/webapp/pages/profile.jsx +++ b/webapp/pages/profile.jsx @@ -56,13 +56,6 @@ module.exports = function (boardsAPI) { this.setState({ init: true }) } }, - newProfile: function () { - var boards = this.state.api - boards.createProfile({ - name: 'Default Name', - description: 'Default Profile Description' - }) - }, linkToEditor: function () { var uid = this.props.params.userid if (uid === 'me' && this.state.id) uid = this.state.id @@ -72,7 +65,6 @@ module.exports = function (boardsAPI) {
-
}