Skip to content

Commit 006410a

Browse files
authored
Merge pull request #177 from ctfguide-tech/fix/writeup-505
feat: fix value for writeup menu
2 parents b106ade + a88b0b9 commit 006410a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/editor/Menu.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ className=" pb-10 pt-4 px-4 shadow sm:px-10 bg-neutral-800" onClick
7070
<select className='bg-neutral-900 text-white border-none text-sm py-1 w-full'>
7171
{
7272
solvedChallenges.map((challenge, index) => (
73-
<option key={index} value={challenge.id} className="text-white">{challenge.challenge.title}</option>
73+
<option key={index} value={challenge.challenge.id} className="text-white">{challenge.challenge.title}</option>
7474
))
7575
}
7676
</select>

0 commit comments

Comments
 (0)