Skip to content

Commit

Permalink
Updated dependencies’ versions and ran ‘yarn install’
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed-Ali committed Jul 13, 2023
1 parent 2b0280a commit 9d80bd9
Show file tree
Hide file tree
Showing 3 changed files with 1,444 additions and 700 deletions.
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,50 +43,50 @@
}
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.2",
"@react-oauth/google": "^0.9.0",
"@dqbd/tiktoken": "^1.0.7",
"@react-oauth/google": "^0.11.0",
"electron-is-dev": "^2.0.0",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^5.3.0",
"electron-updater": "^6.1.1",
"html2canvas": "^1.4.1",
"i18next": "^22.4.11",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"i18next": "^23.2.11",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"jspdf": "^2.5.1",
"katex": "^0.16.4",
"katex": "^0.16.8",
"lodash": "^4.17.21",
"match-sorter": "^6.3.1",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-markdown": "^8.0.5",
"react-i18next": "^13.0.2",
"react-markdown": "^8.0.7",
"react-scroll-to-bottom": "^4.2.0",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"rehype-katex": "^6.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"uuid": "^9.0.0",
"zustand": "^4.3.6"
"zustand": "^4.3.9"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/lodash": "^4.14.192",
"@types/lodash": "^4.14.195",
"@types/papaparse": "^5.3.7",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-scroll-to-bottom": "^4.2.0",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"concurrently": "^8.0.1",
"electron": "^23.2.0",
"electron-builder": "^23.6.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-top-level-await": "^1.3.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.7",
"@types/react-scroll-to-bottom": "^4.2.1",
"@types/uuid": "^9.0.2",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"electron": "^25.3.0",
"electron-builder": "^24.4.0",
"postcss": "^8.4.25",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6",
"vite": "^4.4.3",
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-wasm": "^3.2.2",
"wait-on": "^7.0.1"
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Chat/ChatContent/ScrollToBottomButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ScrollToBottomButton = React.memo(() => {
className={`cursor-pointer absolute right-6 bottom-[60px] md:bottom-[60px] z-10 rounded-full border border-gray-200 bg-gray-50 text-gray-600 dark:border-white/10 dark:bg-white/10 dark:text-gray-200 ${
atBottom ? 'hidden' : ''
}`}
onClick={scrollToBottom}
onClick={() => scrollToBottom()}
>
<DownArrow />
</button>
Expand Down
Loading

0 comments on commit 9d80bd9

Please sign in to comment.