Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Jun 10, 2020
1 parent 8dac2f9 commit 878d2ff
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/store/src/singleton_store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const store = new Store({
});

const stores = loadStoryStore();
console.log('stores', stores);
if (stores) {
store.setStore(stores);
saveStore(stores);
Expand Down
1 change: 0 additions & 1 deletion ui/app/src/PageList/PageListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export interface PageListItemProps {
}
export const PageListItem: FC<PageListItemProps> = ({ page, link }) => {
const { tags = '', date } = page;
console.log(tags);
return (
<Flex sx={{ flexDirection: 'column' }}>
<Link href={link}>
Expand Down
1 change: 0 additions & 1 deletion ui/components/src/Markdown/MarkdownComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export interface MarkdownComponentType {
}
export const markdownComponents: MarkdownComponentType = {
code: props => {
console.log(props);
return <SyntaxHighlighter {...props} />;
},
pre: props => {
Expand Down

0 comments on commit 878d2ff

Please sign in to comment.