Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgarel committed Dec 20, 2024
1 parent f30bc17 commit b8b430f
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export const EntryNodesTableBody = ({
}: Props) => {
const [shownLanguageCodes, setShownLanguageCodes] = useState<string[]>([]);


const navigate = useNavigate();

useEffect(() => {
Expand Down Expand Up @@ -99,9 +98,7 @@ export const EntryNodesTableBody = ({
key={id}
hover
onClick={() => {
navigate(
`/${taxonomyName}/${branchName}/entry/${id}`,
);
navigate(`/${taxonomyName}/${branchName}/entry/${id}`);
}}
sx={{ textDecoration: "none" }}
>
Expand Down

0 comments on commit b8b430f

Please sign in to comment.