diff --git a/src/apis.js b/src/apis.js
index 35b8e88..293cf52 100644
--- a/src/apis.js
+++ b/src/apis.js
@@ -170,7 +170,7 @@ export const getGameAPI = async (battleId) => {
data.roundsData = {};
data.redPlayers = {};
data.bluePlayers = {};
- data.goldenRound = goldenRoundRecords.length ? goldenRoundRecords[0] : null;
+ data.goldenRound = goldenRoundRecords && goldenRoundRecords.length ? goldenRoundRecords[0] : null;
playerStats.forEach((item) => {
const { playerBattleStats = {}, roundRecords = [] } = item;
if (playerBattleStats.team === 0) {
diff --git a/src/components/Avatar.vue b/src/components/Avatar.vue
index 08384ea..ade0865 100644
--- a/src/components/Avatar.vue
+++ b/src/components/Avatar.vue
@@ -1,21 +1,23 @@
-
+
{{ blueTeam[0].name }}
-
+
{{ redTeam[0].name }}