From 24ce496a222d40a38cc5fcf2fe2af924e54c6424 Mon Sep 17 00:00:00 2001 From: Martin Krung Date: Fri, 22 Dec 2023 16:46:08 +0100 Subject: [PATCH] Closes #3393 - changed warning text --- apps/vyper/src/app/components/WarnRemote.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/vyper/src/app/components/WarnRemote.tsx b/apps/vyper/src/app/components/WarnRemote.tsx index ee0d4b9422..5038b61fb9 100644 --- a/apps/vyper/src/app/components/WarnRemote.tsx +++ b/apps/vyper/src/app/components/WarnRemote.tsx @@ -10,7 +10,7 @@ function WarnRemoteLabel({environment}: Props) { } return ( - The remote compiler should only be used for testing NOT for production environments. For production, use a local compiler. + Do not use the remote compiler in a production environment, it is only for testing purposes. For production, use a local compiler. ) }