Skip to content

Commit

Permalink
api 에러 임시 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
94chl committed Dec 13, 2022
1 parent 7f7abf9 commit 64f0403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/characterTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { callApi, corsApi } from "./utils";
export const generateCharacterData = async () => {
const stats = await callApi("data/Character");
const levelUpStats = await callApi("data/CharacterLevelUpStat");
return { stats, levelUpStats };
return { stats: stats.slice(0, 58), levelUpStats: levelUpStats.slice(0, 58) };
};

const langTest = async () => {
Expand Down

0 comments on commit 64f0403

Please sign in to comment.