redirecter for ao3 that adds opengraph metadata

update file

Changed files
+1 -1
src
app
generator
+1 -1
src/app/generator/page.js
···
{props.summaryType === 'custom' && (
<div className="input-field">
<label htmlFor="customSummary">Custom Summary</label>
-
<textarea name="customSummary" id="customSummary" onChange={e => updateProp(e.target.name, e.target.value)}></textarea>
+
<textarea name="customSummary" id="customSummary" onBlurs={e => updateProp(e.target.name, e.target.value)}></textarea>
</div>
)}
</div>