From a9a2708d5d560706a0d7961f663aee07d792ff8d Mon Sep 17 00:00:00 2001 From: Janis Date: Tue, 3 May 2022 21:30:24 +0200 Subject: [PATCH] eslint-disable react-hooks/exhaustive-deps in Nav.jsx --- frontend/src/components/Nav.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/Nav.jsx b/frontend/src/components/Nav.jsx index 5fb0f99..9c2a683 100644 --- a/frontend/src/components/Nav.jsx +++ b/frontend/src/components/Nav.jsx @@ -1,3 +1,4 @@ +/* eslint-disable react-hooks/exhaustive-deps */ import React, { useState, useEffect } from "react"; import { useParams, useNavigate, useLocation } from "react-router-dom";