👕 Use single quotes in JS string

Signed-off-by: Katrina Uychaco <kuychaco@github.com>
This commit is contained in:
Max Brunsfeld
2016-02-09 14:34:32 -08:00
committed by Katrina Uychaco
parent 0f02663f6b
commit fa70560eba

View File

@@ -13,7 +13,7 @@ class StateStore {
resolve(dbOpenRequest.result)
}
dbOpenRequest.onerror = (error) => {
console.error("Could not connect to indexedDB", error)
console.error('Could not connect to indexedDB', error)
resolve(null)
}
})