Skip to content

Commit

Permalink
refactor: replace word
Browse files Browse the repository at this point in the history
  • Loading branch information
NikitaKorevo committed Oct 22, 2023
1 parent 63f3b5c commit 87bf94c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function SubmittedStatus(props: Props) {

if (!solution) {
const deadlinePassedMessage = 'Submission deadline has already passed';
const tipMessage = 'Try to submit your solution as early as possible';
const tipMessage = 'Try to submit your solution as soon as possible';
const message = `You haven't submitted solution. ${deadlinePassed ? deadlinePassedMessage : tipMessage}`;
return <Alert message={message} type="warning" showIcon style={{ marginBottom: 8 }} />;
}
Expand Down

0 comments on commit 87bf94c

Please sign in to comment.