Skip to content

Commit

Permalink
Refactor: TFT 기본 타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
navyjeongs committed Sep 10, 2023
1 parent 899f76f commit 134e663
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/constants/MakeGame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ interface TFTInitial {
initBasicInfo: BasicInfo;
initIsUseCustomRule: IsUseCustomRule;
initCustomRule: CustomRule;
initChannelImgUrl: string;
}

export const TFTInitialValue: TFTInitial = {
Expand All @@ -28,7 +29,6 @@ export const TFTInitialValue: TFTInitial = {
initBasicInfo: {
title: '',
participationNum: 0,
channelImageUrl: '',
},
initIsUseCustomRule: {
tierMax: false,
Expand All @@ -40,4 +40,5 @@ export const TFTInitialValue: TFTInitial = {
tierMin: 0,
playCountMin: 50,
},
initChannelImgUrl: '',
};

0 comments on commit 134e663

Please sign in to comment.