From 0894db774573acb2c8b58fc56e865c7ba81b988a Mon Sep 17 00:00:00 2001 From: Khushboo Verma <43381712+vermakhushboo@users.noreply.github.com> Date: Mon, 21 Aug 2023 21:49:18 +0530 Subject: [PATCH 1/2] Fixed type error --- src/lib/wizards/functions/connectExisting.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/wizards/functions/connectExisting.svelte b/src/lib/wizards/functions/connectExisting.svelte index 839bd8dd6..1fc41f749 100644 --- a/src/lib/wizards/functions/connectExisting.svelte +++ b/src/lib/wizards/functions/connectExisting.svelte @@ -29,7 +29,7 @@ $installation.$id, $repository.id, $choices.branch, - $choices.silentMode, + $choices.silentMode || undefined, $choices.rootDir ); trackEvent(Submit.FunctionConnectRepo, { From 3877a759a22445e974a9b52114ef2cd8f13fac9b Mon Sep 17 00:00:00 2001 From: Khushboo Verma <43381712+vermakhushboo@users.noreply.github.com> Date: Mon, 21 Aug 2023 21:49:41 +0530 Subject: [PATCH 2/2] Return undefined if providerSilentMode is empty --- src/lib/elements/table/table.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elements/table/table.svelte b/src/lib/elements/table/table.svelte index 42bf5a866..342071287 100644 --- a/src/lib/elements/table/table.svelte +++ b/src/lib/elements/table/table.svelte @@ -1,7 +1,7 @@