diff --git a/src/components/word-details/WordDetails.tsx b/src/components/word-details/WordDetails.tsx
index f9e2b80..05c8d0f 100644
--- a/src/components/word-details/WordDetails.tsx
+++ b/src/components/word-details/WordDetails.tsx
@@ -14,7 +14,7 @@ import { getAllData } from "../../services/user";
export const WordDetails: React.FC = () => {
const location = useLocation();
-
+
const category_id = queryString.parse(location.pathname)['/word-details/category_id'] as string;
const shelf_id = queryString.parse(location.pathname)['shelf_id'] as string;
const word_id = queryString.parse(location.pathname)['word_id'] as string;
@@ -32,62 +32,63 @@ export const WordDetails: React.FC = () => {
useEffect(() => {
console.log("Rendering Word details");
}, [notes])
-
- return
-
-
-
- { currentShelf?.name }
-
-
-
-
-
-
{ currentWord?.word.name } { currentWord?.word.pronounciation?.text }
-
}
\ No newline at end of file