Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
manojVivek committed Jun 24, 2020
1 parent c6e2c6d commit bc76c2c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions desktop-app/app/components/BookmarksBar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ function BookmarkItem({bookmark, onClick, onDelete, onEdit}) {
};

const handleDelete = function() {
setAnchorEl(null);
onDelete(bookmark);
};

Expand Down
1 change: 0 additions & 1 deletion desktop-app/app/reducers/bookmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export default function browser(
switch (action.type) {
case TOGGLE_BOOKMARK:
let bookmarks = state.bookmarks;
console.log('action.title', action.title);
const bookmark = {
title: action.title || getWebsiteName(action.url),
url: action.url,
Expand Down

0 comments on commit bc76c2c

Please sign in to comment.