Skip to content

Commit

Permalink
fix: adding back teachme (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevkevinpal authored Nov 6, 2023
1 parent 0a844bd commit a2469c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/App/SideBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { useFormContext } from 'react-hook-form'
import { ClipLoader } from 'react-spinners'
import styled from 'styled-components'
import { SelectWithPopover } from '~/components/App/SideBar/Dropdown'
import { TeachMe } from '../Helper/TeachMe'
import ChevronLeftIcon from '~/components/Icons/ChevronLeftIcon'
import ClearIcon from '~/components/Icons/ClearIcon'
import SearchIcon from '~/components/Icons/SearchIcon'
Expand Down Expand Up @@ -102,7 +103,8 @@ const Content = forwardRef<HTMLDivElement, ContentProp>(({ onSubmit, subViewOpen
<span className="count">{filteredNodes.length}</span>
<span className="label"> results</span>
</div>
<div className="right">
<div className="right" style={{alignItems: "center"}}>
<TeachMe />
<SelectWithPopover />
</div>
</>
Expand Down

0 comments on commit a2469c3

Please sign in to comment.