Skip to content

Commit

Permalink
fix: addressing comments for smaller changes like logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed Oct 10, 2023
1 parent f1c8667 commit 37fea83
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions src/components/App/SideBar/SelectedNodeView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ const _View = () => {
const selectedNode = useSelectedNode()
const [showTeachMe] = useDataStore((s) => [s.showTeachMe])

console.log('SHOW TEACH ME', showTeachMe)

if (showTeachMe) {
return <TeachMeText />
}
Expand Down
2 changes: 0 additions & 2 deletions src/components/App/SideBar/SidebarSubView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ export const SideBarSubView = ({ open }: Props) => {
s.showTeachMe,
])

console.log('IS OPEN', open)

return (
<Slide direction="right" in={open} mountOnEnter style={{ width: showTeachMe ? '700px' : '' }} unmountOnExit>
<Wrapper>
Expand Down
3 changes: 0 additions & 3 deletions src/components/App/SideBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,6 @@ export const SideBar = ({ onSubmit }: Props) => {
const selectedNode = useSelectedNode()
const [showTeachMe] = useDataStore((s) => [s.showTeachMe])

console.log('IS OPEN 2 vals', !!selectedNode, !!showTeachMe)
console.log('IS OPEN 2', !!selectedNode || !!showTeachMe)

return (
<>
<Slide direction="right" in={sidebarIsOpen} mountOnEnter unmountOnExit>
Expand Down
1 change: 0 additions & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const { origin, host } = window.location
export const isDevelopment = !!(
origin === 'http://localhost:3000' ||
origin === 'http://localhost:3001' ||
origin === 'http://localhost:3004' ||
origin === 'https://sphinx-jarvis-david.sphinx1.repl.co'
)

Expand Down

0 comments on commit 37fea83

Please sign in to comment.