diff --git a/CHANGELOG.md b/CHANGELOG.md index e99b831638..a322cf3599 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [unreleased] + +### Features + +* Add beta warning message to desktop when creating/joining a community [#3351](https://github.com/TryQuiet/quiet/issues/3351) + ## [8.0.0] ### Features diff --git a/packages/desktop/src/renderer/components/CreateUsername/CreateUsernameComponent.tsx b/packages/desktop/src/renderer/components/CreateUsername/CreateUsernameComponent.tsx index e1159ccf57..e194535c87 100644 --- a/packages/desktop/src/renderer/components/CreateUsername/CreateUsernameComponent.tsx +++ b/packages/desktop/src/renderer/components/CreateUsername/CreateUsernameComponent.tsx @@ -282,6 +282,20 @@ export const CreateUsernameComponent: React.FC = ( }), }} /> + + + + + + + Quiet is in beta and shouldn't be used for activities requiring security. + + + diff --git a/packages/mobile/src/components/CreateCommunity/CreateCommunity.component.tsx b/packages/mobile/src/components/CreateCommunity/CreateCommunity.component.tsx index cbb91848eb..d3a6391399 100644 --- a/packages/mobile/src/components/CreateCommunity/CreateCommunity.component.tsx +++ b/packages/mobile/src/components/CreateCommunity/CreateCommunity.component.tsx @@ -1,5 +1,5 @@ import React, { FC, useEffect, useRef, useState } from 'react' -import { Keyboard, KeyboardAvoidingView, Platform, TextInput, View } from 'react-native' +import { Keyboard, KeyboardAvoidingView, Platform, TextInput, View, Image } from 'react-native' import { defaultTheme } from '../../styles/themes/default.theme' import { Button } from '../Button/Button.component' import { Input } from '../Input/Input.component' @@ -9,6 +9,8 @@ import { TextWithLink } from '../TextWithLink/TextWithLink.component' import { CreateCommunityProps } from './CreateCommunity.types' import { Splash } from '../Splash/Splash.component' +import { icons } from '../../assets' + export const CreateCommunity: FC = ({ createCommunityAction, redirectionAction, @@ -90,7 +92,24 @@ export const CreateCommunity: FC = ({