Results 6 issues of TezzardzGoneWild

`this.state.alias` is referenced multiple times, but is never set. This was improperly used causing every profile to have the default title of `hic et nunc - hic et nunc` instead...

Anywhere HTML elements are created through `.map` requires unique `key` properties on each of the children. This changes nothing for end users, but removes the console error and protects against...

The Config -> Advanced section does not currently show you the value saved for your curation making it impossible to see how much will be spent when curating without going...

Several sections of code received some clean up, but no functionality change: - `onReady` included a nested if statement that could be expressed using a single if statement - the...

Two functions mapping arrays to HTML elements had the key on one of the children instead of the parent -- React wants keys on the topmost element when something is...

One of the SVGs had multiple properties using dashes instead of camelCase (ex. `stroke-width` instead of `strokeWidth`). React doesn't read / apply these properly and will throw errors in the...