From 0e3be5fd518bc8ba549f3fe121cb256ba0eafdea Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 24 Aug 2022 16:45:22 +0200 Subject: [PATCH] fix warning msg --- apps/vyper/src/app/components/WarnRemote.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/vyper/src/app/components/WarnRemote.tsx b/apps/vyper/src/app/components/WarnRemote.tsx index 3ece01895b..1235eebde7 100644 --- a/apps/vyper/src/app/components/WarnRemote.tsx +++ b/apps/vyper/src/app/components/WarnRemote.tsx @@ -11,8 +11,7 @@ function WarnRemoteLabel({ environment }: Props) { } return ( -
It is really important to not use the remote compiler for production environment. - Please only use it for testing purpose and prefer to using a local compiler for production like environment.
+
The remote compiler should only be used for testing NOT for production environments. For production, use a local compiler.
) }