Skip to content

Commit 3e46e75

Browse files
committed
Remove semicolon
1 parent 4eb32a1 commit 3e46e75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redisinsight/ui/src/utils/formatters/valueFormatters.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { encode, decode } from 'msgpackr';
1+
import { decode, encode } from 'msgpackr'
22
// eslint-disable-next-line import/order
33
import { Buffer } from 'buffer'
44
import { isUndefined } from 'lodash'
@@ -72,7 +72,7 @@ const formattingBuffer = (
7272
case KeyValueFormat.JSON: return bufferToJSON(reply, props as FormattingProps)
7373
case KeyValueFormat.Msgpack: {
7474
try {
75-
const decoded = decode(Uint8Array.from(reply.data));
75+
const decoded = decode(Uint8Array.from(reply.data))
7676
const value = JSONBigInt.stringify(decoded)
7777
return JSONViewer({ value, ...props })
7878
} catch (e) {

0 commit comments

Comments
 (0)