Commit f717a1af authored by minseok.park's avatar minseok.park

fix lint

parent 82506ea1
Pipeline #21684 passed with stages
in 4 minutes and 7 seconds
......@@ -220,7 +220,7 @@
}
function saveMessagesToStorage (type, text) {
let messages = JSON.parse(sessionStorage.getItem('messages')) || []
const messages = JSON.parse(sessionStorage.getItem('messages')) || []
messages.push({ type, text })
sessionStorage.setItem('messages', JSON.stringify(messages))
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment