Skip to content

Commit

Permalink
Fix converter cuneiform (#485)
Browse files Browse the repository at this point in the history
* * Wrapped css into class

* fixed upper case
  • Loading branch information
Vas9ka authored Jun 18, 2024
1 parent 52a3797 commit f10724f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ function CuneiformConverterForm({

const handleConvert = () => {
const lines = content.split('\n')
const replacedLines = lines.map((line) => replaceTransliteration(line))
const replacedLines = lines.map((line) =>
replaceTransliteration(line.toLowerCase())
)

Promise.all(
replacedLines
Expand Down

0 comments on commit f10724f

Please sign in to comment.