Skip to content

Commit

Permalink
chore: deactivate 'breaking changes warning' for mobile and desktop #…
Browse files Browse the repository at this point in the history
  • Loading branch information
EmiM committed Nov 23, 2023
1 parent 8d16374 commit e68d5b5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ import { Site } from '@quiet/common'
const BreakingChangesWarning = () => {
const modal = useModal(ModalName.breakingChangesWarning)

useEffect(() => {
modal.handleOpen() // Open modal once per app start
}, [])

const title = 'Update available'
const message =
'Quiet’s next release makes joining communities faster and more reliable by letting people join when the owner is offline! 🎉 However, these changes are not backwards compatible, so you must re-install Quiet from tryquiet.org and re-create or re-join your community. 😥 This version of Quiet will no longer receive any updates or security fixes, so please re-install soon. We apologize for the inconvenience.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,6 @@ export const ChannelListScreen: FC = () => {
)
}
}, [dispatch, usernameTaken, duplicateCerts])
/*
* Notify user about incoming lack of backwards compatiblity.
* This should be removed in the next major release of the application (2.x)
*
* https://github.com/TryQuiet/quiet/issues/1980
*/
useEffect(() => {
dispatch(navigationActions.navigation({ screen: ScreenNames.NotifierScreen }))
}, [])

const redirect = useCallback(
(id: string) => {
Expand Down

0 comments on commit e68d5b5

Please sign in to comment.