From 7775e5213eb09c92ff782027fdaf94f5f06e19ce Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 15 Apr 2024 09:01:22 -0700 Subject: [PATCH] fix(portal): remove typo in manual command var (#4614) This breaks copy-pasting the token from the Deploy Gateway page: Screenshot 2024-04-13 at 2 59 08 PM --- elixir/apps/web/lib/web/live/sites/new_token.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/apps/web/lib/web/live/sites/new_token.ex b/elixir/apps/web/lib/web/live/sites/new_token.ex index f4db64836..092f1e3d1 100644 --- a/elixir/apps/web/lib/web/live/sites/new_token.ex +++ b/elixir/apps/web/lib/web/live/sites/new_token.ex @@ -247,7 +247,7 @@ defmodule Web.Sites.NewToken do defp manual_command(env) do """ - #{Enum.map_join(env, "\n", fn {key, value} -> "#{key}=#{value}" end)}) + #{Enum.map_join(env, "\n", fn {key, value} -> "#{key}=#{value}" end)} """ end