From cc5331f2ba90f566ef250056e4f7347427262348 Mon Sep 17 00:00:00 2001 From: Javier Aguirre Date: Tue, 8 Nov 2022 09:27:52 +0100 Subject: [PATCH] The value wasn't unique (#6731) --- app/components/settings/radio_setting/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/settings/radio_setting/index.tsx b/app/components/settings/radio_setting/index.tsx index afacc404b..94ec377fe 100644 --- a/app/components/settings/radio_setting/index.tsx +++ b/app/components/settings/radio_setting/index.tsx @@ -58,7 +58,7 @@ function RadioSetting({ isSelected={value === entryValue} text={text} value={entryValue} - key={value} + key={entryValue} />, ); }