Skip to content

Commit

Permalink
firefox patch
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Nov 6, 2023
1 parent 64e5c64 commit 25d1480
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ChatGPTBox",
"description": "Integrating ChatGPT into your browser deeply, everything you need is here",
"version": "2.4.5",
"version": "2.4.5.1",
"manifest_version": 3,
"icons": {
"16": "logo.png",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.v2.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ChatGPTBox",
"description": "Integrating ChatGPT into your browser deeply, everything you need is here",
"version": "2.4.5",
"version": "2.4.5.1",
"manifest_version": 2,
"icons": {
"16": "logo.png",
Expand Down
2 changes: 1 addition & 1 deletion src/popup/Popup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Footer({ currentVersion, latestVersion }) {
<div className="footer">
<div>
{`${t('Current Version')}: ${currentVersion} `}
{currentVersion === latestVersion ? (
{currentVersion >= latestVersion ? (
`(${t('Latest')})`
) : (
<>
Expand Down

0 comments on commit 25d1480

Please sign in to comment.