Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨 레벨관련 문구 비문이슈로 수정 #515

Merged
merged 1 commit into from
Feb 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Graph/LastLevelGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function LastLevelGraph(props: LastLevelGraphType) {
<Graph.SymbolText symbolStack={props.symbolStack} />
{/* TODO : progress bar label이 필요한지 확인 필요 to 디자이너 */}
<Graph.ProgressBar isFull min={lastLevel.min} />
<Graph.Description>성공적으로 레벨을 완수했어요!</Graph.Description>
<Graph.Description>레벨업에 성공했어요!!</Graph.Description>
</Graph>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Graph/PastLevelGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function PastLevelGraph(props: PastLabelGraphType) {
<Graph.SymbolText symbolStack={props.symbolStack} />
{/* TODO : progress bar label이 필요한지 확인 필요 to 디자이너 */}
<Graph.ProgressBar isFull />
<Graph.Description>성공적으로 레벨을 완수했어요!</Graph.Description>
<Graph.Description>레벨업에 성공했어요!!</Graph.Description>
</Graph>
);
}
Expand Down
Loading