We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 375d8ea commit aba5751Copy full SHA for aba5751
src/components/Nav/index.js
@@ -130,7 +130,7 @@ export default function Nav() {
130
onKeyDown={handleListKeyDown}
131
>
132
<MenuItem onClick={handleMenuClose}>
133
- <a onClick={logout}>Logout</a>
+ <span onClick={logout}>Logout</span>
134
</MenuItem>
135
</MenuList>
136
</ClickAwayListener>
src/components/Resources/index.js
@@ -20,7 +20,7 @@ function Resources({ getResourcesUrl }) {
20
// handle error
21
console.log(error);
22
});
23
- }, []);
+ }, [getResourcesUrl]);
24
25
return (
26
<>
0 commit comments