Merge pull request #1319 from Nolshine/fix_missing_onclick_for_bulk_purchase

fix 'confirm bulk purchase' button missing onclick
This commit is contained in:
hydroflame 2021-09-21 11:03:39 -04:00 committed by GitHub
commit d73040fdc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -95,7 +95,7 @@ function BulkPurchase(props: IProps): React.ReactElement {
style={{ margin: "5px" }} style={{ margin: "5px" }}
onKeyDown={onKeyDown} onKeyDown={onKeyDown}
/> />
<button className="std-button">Confirm Bulk Purchase</button> <button className="std-button" onClick={bulkPurchase}>Confirm Bulk Purchase</button>
</> </>
); );
} }