From 6ab7747d15f13a356fc870be17508af64c8ddb51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Wed, 19 Jul 2023 12:35:25 +0200 Subject: [PATCH] Fix warning Fix this warning ``` Warning: Packagers: option language has 'choices' but has type 'string', use 'select' instead to remove this warning. ``` --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index a68f3b8..2937a50 100644 --- a/manifest.toml +++ b/manifest.toml @@ -56,7 +56,7 @@ ram.runtime = "50M" ask.en = "Choose the application language" ask.fr = "Choisissez la langue de l'application" type = "string" - choices = ["fr", "en"] + select = ["fr", "en"] default = "fr" [install.admin]