From a6b0dcc22bcc364983e42ff15596aa430dc5db30 Mon Sep 17 00:00:00 2001 From: Kinga LG Date: Fri, 10 Jul 2026 16:42:52 +0200 Subject: [PATCH 1/2] Warning message desktop(new) and mobile(fix) --- .../CreateUsernameComponent.tsx | 14 +++++++++++ .../CreateCommunity.component.tsx | 23 ++++++++++++++++-- .../CreateCommunity.test.tsx.snap | 19 +++++++++++++++ .../JoinCommunity/JoinCommunity.component.tsx | 24 ++++++++++++++++--- .../__snapshots__/JoinCommunity.test.tsx.snap | 21 +++++++++++++++- 5 files changed, 95 insertions(+), 6 deletions(-) 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 = ({