Skip to content

Commit

Permalink
fix: replace Available Offline text with Downloaded to avoid confusti…
Browse files Browse the repository at this point in the history
…on when the app is Offline
  • Loading branch information
zardoy committed Dec 11, 2024
1 parent 2d77bdb commit 7596520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/MainMenuRenderApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default () => {
return
}
const upStatus = () => {
setVersionStatus(`(${isLatest ? 'latest' : 'new version available'}${mainMenuState.serviceWorkerLoaded ? ' - Available Offline' : ''})`)
setVersionStatus(`(${isLatest ? 'latest' : 'new version available'}${mainMenuState.serviceWorkerLoaded ? ', Downloaded' : ''})`)
}
subscribe(mainMenuState, upStatus)
upStatus()
Expand Down

0 comments on commit 7596520

Please sign in to comment.