Skip to content

Commit de8668e

Browse files
committed
Added missing semicolon
1 parent 37cc020 commit de8668e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/cache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = function (cacheMap, keyFieldName, options = {}) {
3030
case 'create':
3131
return;
3232
case 'get':
33-
const key = makeCacheKey(context.id)
33+
const key = makeCacheKey(context.id);
3434
const value = cacheMap.get(key);
3535

3636
if (value) context.result = value;

0 commit comments

Comments
 (0)