From 3ae20fbf5996f19698da2c142bdbf8c65976c887 Mon Sep 17 00:00:00 2001 From: carlospelazas Date: Sat, 27 Apr 2024 20:40:19 +0200 Subject: [PATCH] fix typo --- webapp/src/pages/groups/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/pages/groups/index.tsx b/webapp/src/pages/groups/index.tsx index 163d8c1..7d861e2 100644 --- a/webapp/src/pages/groups/index.tsx +++ b/webapp/src/pages/groups/index.tsx @@ -6,7 +6,7 @@ import NoGroup from 'src/components/group/NoGroup'; import { GroupTable } from 'src/components/group/GroupTable'; //const apiEndpoint = 'http://conoceryvencer.xyz:8000' -const apiEndpoint = process.env.REACT_APPAPI_ENDPOINT || 'http://localhost:8000'; +const apiEndpoint = process.env.REACT_APP_API_ENDPOINT || 'http://localhost:8000'; let groupUUID: string = ""; export const GroupsPage: React.FC<{}> = () => {