From 3105963b11cfdaaa48853c70409af24d640a3300 Mon Sep 17 00:00:00 2001 From: Ravinou Date: Mon, 31 Mar 2025 18:55:43 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20wizardEnv=20data=20fetch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Containers/RepoList/RepoList.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containers/RepoList/RepoList.tsx b/Containers/RepoList/RepoList.tsx index 083f857..d21ca18 100644 --- a/Containers/RepoList/RepoList.tsx +++ b/Containers/RepoList/RepoList.tsx @@ -54,7 +54,8 @@ export default function RepoList() { 'Content-type': 'application/json', }, }); - setWizardEnv((await response.json()).wizardEnv); + const data = await response.json(); + setWizardEnv(data); } catch (error) { console.log('Fetching datas error'); }