Skip to content

Commit 0db56d0

Browse files
author
Dijana Pavlovic
committed
Run prettier
1 parent 66bacb7 commit 0db56d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/driver/src/errors/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function tryParseInt(val: Uint8Array | string | undefined) {
7272
}
7373

7474
function readAttrStr(val: Uint8Array | string | undefined) {
75-
return val instanceof Uint8Array ? utf8Decoder.decode(val) : (val ?? "");
75+
return val instanceof Uint8Array ? utf8Decoder.decode(val) : val ?? "";
7676
}
7777

7878
export function prettyPrintError(

0 commit comments

Comments
 (0)