HACK: Comment out code which returns invalid data

It seems like the backend is returning a weird response when queried for
addons. Once the backend issue is identified and fixed this should be
uncommented.

Signed-off-by: Adrian Oprea <adrian@oprea.rocks>
This commit is contained in:
Adrian Oprea 2018-01-17 17:54:35 +02:00
parent cade0ae686
commit 157969aa5e

View file

@ -28,7 +28,7 @@ export default (props: Props): Node => {
<strong> <strong>
<FormattedMessage id="general.addon_versions" /> <FormattedMessage id="general.addon_versions" />
</strong> </strong>
{addons.map((addon: string): Node => <p>{addon}</p>)} {/* {addons.map((addon: string): Node => <p>{addon}</p>)} */}
</Modal.Body> </Modal.Body>
</Modal> </Modal>
); );