From 95e1decc550c0feb571495fda038a5c1773503c5 Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Wed, 18 Jun 2025 15:42:20 +0100 Subject: [PATCH] fix(frontend): resolve nlp page select tab issue --- frontend/src/components/nlp/index.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/nlp/index.tsx b/frontend/src/components/nlp/index.tsx index a53ab4c7..b38e372b 100644 --- a/frontend/src/components/nlp/index.tsx +++ b/frontend/src/components/nlp/index.tsx @@ -116,12 +116,18 @@ export const Nlp = ({ {/* NLP SAMPLES */} - + {selectedTab === "sample" ? : null} {/* NLP ENTITIES */} - {entityId ? : } + {selectedTab === "entity" ? ( + entityId ? ( + + ) : ( + + ) + ) : null}