diff --git a/src/VideoInfo.js b/src/VideoInfo.js
index 4fcc0fb..072d1ea 100644
--- a/src/VideoInfo.js
+++ b/src/VideoInfo.js
@@ -1,7 +1,7 @@
import React from 'react';
import Wikipedia from './Wikipedia';
import { Card, Tabs, Tab } from 'react-bootstrap';
-import {Link} from 'react-router-dom';
+import { Link } from 'react-router-dom';
import axios from 'axios';
import Linkify from "react-linkify";
import moment from 'moment';
@@ -67,12 +67,12 @@ class VideoInfo extends React.Component {
}
// componentDidUpdate(prevProps, prevState, snapshot) {
-
+
// }
// shouldComponentUpdate(nextProps, nextState) {
// }
-
+
render() {
const { error, isLoaded, VideoDetails, comments } = this.state;
const momentDuration = this.momentDuration;
@@ -80,7 +80,7 @@ class VideoInfo extends React.Component {
if (error) {
return (
- {}
+ {}
Error: {error.message} -- Cannot get {error.config.url}
);
@@ -98,8 +98,8 @@ class VideoInfo extends React.Component {
Channel name: {VideoDetails.snippet.channelTitle}
Description:
Tags: {VideoDetails.snippet.tags ?
- VideoDetails.snippet.tags.map((tag,i) =>
- ( {tag}{" "} ))
+ VideoDetails.snippet.tags.map((tag, i) =>
+ ({tag}{" "}))
: ""}