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.
2 parents 6a3f733 + ed0c5ab commit 966e23cCopy full SHA for 966e23c
3 files changed
.eslintrc
package.json
@@ -23,7 +23,13 @@
23
"test": "react-scripts test"
24
},
25
"eslintConfig": {
26
- "extends": "react-app"
+ "extends": [
27
+ "react-app",
28
+ "shared-config"
29
+ ],
30
+ "rules": {
31
+ "react-hooks/exhaustive-deps": "off"
32
+ }
33
34
"browserslist": {
35
"production": [
src/App.js
@@ -71,7 +71,9 @@ export const App = () => {
71
switch (roll.type) {
72
case ACTIONS.RANDOM:
73
setActiveHex(roll.total);
74
+
75
break;
76
77
case ACTIONS.RUN:
78
default:
79
const direction = currentEngine.directions[roll.total];
0 commit comments