From 8be988ef27d76051d81e6d079828ebde09d41635 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 13 Jun 2023 22:40:20 -0300 Subject: [PATCH] using 5 digits ids --- src/frontend/src/contexts/tabsContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/contexts/tabsContext.tsx b/src/frontend/src/contexts/tabsContext.tsx index 8868e0f74..2dc22c34f 100644 --- a/src/frontend/src/contexts/tabsContext.tsx +++ b/src/frontend/src/contexts/tabsContext.tsx @@ -21,7 +21,7 @@ import ShortUniqueId from "short-unique-id"; import { addEdge } from "reactflow"; import _ from "lodash"; -const uid = new ShortUniqueId({ length: 4 }); +const uid = new ShortUniqueId({ length: 5 }); const TabsContextInitialValue: TabsContextType = { save: () => {},