Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
feat : add lang for submit
Browse files Browse the repository at this point in the history
- cpp + plaintext
  • Loading branch information
kasterra committed May 24, 2024
1 parent 2413927 commit d0bc3b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ const SubmitModal = ({ isOpen, onClose }: Props) => {
<RadioGroup
title="프로그래밍 언어"
name="language"
valueList={["c", "java", "python" /*"plaintext"*/]}
textList={["C", "Java", "Python" /*"Text"*/]}
valueList={["c", "cpp", "java", "python", "plaintext"]}
textList={["C", "c++", "Java", "Python", "Text"]}
onChange={setLanguage as (value: string) => void}
/>

Expand Down

0 comments on commit d0bc3b0

Please sign in to comment.