diff --git a/src/App.css b/src/App.css
index afc3885..1787ad6 100644
--- a/src/App.css
+++ b/src/App.css
@@ -7,14 +7,12 @@
}
.App-header {
- background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
- color: white;
}
.App-link {
diff --git a/src/PhonoChangeApplier.js b/src/PhonoChangeApplier.js
index 63265ba..f1408d6 100644
--- a/src/PhonoChangeApplier.js
+++ b/src/PhonoChangeApplier.js
@@ -124,7 +124,9 @@ const PhonoChangeApplier = () => {
diff --git a/src/components/Epochs.js b/src/components/Epochs.js
index e73edab..23e9cc1 100644
--- a/src/components/Epochs.js
+++ b/src/components/Epochs.js
@@ -10,7 +10,10 @@ const Epochs = props => {
const addEpoch = (e, props) => {
e.preventDefault()
let index = props.epochs.length + 1;
- props.setEpochs([...props.epochs, {name: `epoch ${index}`, changes:['[+ feature]>[- feature]/_#']}])
+ props.dispatch({
+ type: 'ADD_EPOCH',
+ value: {name: `Epoch ${index}`}
+ })
}
const removeEpoch = (e, epochName) => {
@@ -33,7 +36,7 @@ const Epochs = props => {
return })
: <>>}